I'm beginning to learn SSDT-BI for Visual Studio 2013, and we work with a pre-existing third-party database that another application uses (we add to this existing database as part of our work).
Can a DACPAC only update certain database objects ("If not exists, drop, and create..."), or must it contain an entire database?
I'm basically looking to replace our existing scripts (all of which are basically "If object exists, drop object, then create object") and use some of the features of SSDT-BI like compilation, source control, better deployment packages, etc. and was wondering if this were possible under the existing database scenario I work with. Everything I've tried so far as led to the DACPAC dropping and recreating the entire database which is not what we want.
Any help or insight into how we might be able to achieve this using the BI tools would be appreciated.