GoEddie / DeploymentContributorFilterer

MIT License
69 stars 34 forks source link

Filter Attributes actually performing the opposite #23

Open nreddipalle opened 4 years ago

nreddipalle commented 4 years ago

@GoEddie I am trying to ignore deploying the schema changes specific to "dbo" schema.. but instead it deploys those schema changes when using with IgnoreSchema filter.. image

Please correct me if my syntax is wrong..

nreddipalle commented 4 years ago

Few more examples on How IgnoreSchema and KeepSchema performing the same operations image

More details: trying with DAC/150/tools/sqlpackage.exe. trying to deploy to Azure SQL DB.

GoEddie commented 4 years ago

Hi, Not sure really - I wouldnt' be surprised if dbo objects don't have a schema a and comes through blank.

In your project have you explicitly set dbo on the name of the objects? Might be worth trying that.

nreddipalle commented 4 years ago

Thanks @GoEddie . will give it a try and let you know.

nreddipalle commented 4 years ago

@GoEddie I am able to make it work properly.. but I do noticing an issue.. I am specifically asking it to ignore [dbo] schema changes as part of deployment. As per logs, it saying ignore but still complaining about a column change and failing the deployment.

image

image

any config still missing from my side??