Let's say I registered my Data-Tier Application into SQL Server 2014. Is there a way how can I disable manual altering of tables? So I can force developers to publish new version of data-tier application instead of manual altering any table in the database ?
How the data-tier application changes when I alter something manually bypassing data-tier upgrade ?
The point of my question is: Someone can add a column directly to the table for a customer bypassing a data-tier upgrade. That means our project in visual studio will be outdated. I would like to force anyone to change a database only though data-tier upgrade.
Thanks :)