We have a large production database that is using a custom version control that allows for seamless upgrades when the schema changes (each change script is versioned). Everything works well.
Can we use the data-tier application programming model side-by-side within an existing database? We would like to try the DAC approach without converting our database to a Data-Tier application. It would be ideal to segregate the data-tier application from the rest of the database at a schema level. Let's say we have three schemas, dbo, my and dac. We would like to continue managing dbo and my by hand and use dacpacs to automatically migrate everything in the dac schema.
We've tried a few tests and it seems like Data-Tier Application Framework does not like competition - it detects objects outside of its scope as "manual changes" and tries to drop them upon the import. Is there a way of changing this behavior?