I have a SQL Server database with the default schema and a custom schema. So for example two tables might be database.dbo.table1 and database.customschema.table2.
I want to keep the "customschema" under source control, and I have loaded that into my Visual Studio SQL Server Database Project.
When I use the Tools -> SQL Server -> New Schema Comparison... utility, it returns differences for all database schemas.
It would show all the "dbo" tables as being different/deleted in the database project even though I don't intend to keep them in the project under source control.
Is there a way to limit the results to show differences between my database project and the actual database for the "customschema" objects?
No, you can't filter out a schema when doing a Schema Comparison on Visual Studio. What you can do is to compare your project (containing only the custom schema) with a database and after the comparison is completed, you can group the differences by schema and once you have the differences group by schema you can Exclude from all the differences that are not grouped under the custom schema.
To group the differences there is a button on the tool header on the schema comparison Group results button And you can exclude groped results by right clicking the group. Exclude selection