.NET database deployment solution where we are creating and upgrading our databases using DACPACS (using DacPackage, DacDeployOptions, DacServices classes).
The default schema is set as dbo in the SQL project properties, so all the database objects are now created in the dbo schema.
Requirement: I need an implementation to create/upgrade stored procedures and functions with different schema only. Ignore rest of the objects (tables, views, triggers etc) in the database.
Please suggest: how can I create/upgrade objects with different schema other than dbo in this case?