Improve the performance of dacpac deployment using c#
问题 We are deploying to MS SQL Server localdb for integration testing. We build a Database Project and the resulting dacpac file is copied in order to be used by the IntegrationTests project. So far we have: DatabaseProject.sqlproj bin/debug/DatabaseProject.dacpac IntegrationTests.csproj bin/debug/DatabaseProject.dacpac We have an assembly setup in the IntegrationTests project where a new fresh database is created and the dacpac is deployed to localdb . In the TearDown the database is deleted so