I know the values of these 2 fields are locked to true in the designer, to be made available in a future release. However, even when I use the /p:IgnoreAnsiNulls=True and /p:IgnoreQuotedIdentifers=True parameters to SqlPackage /Action:Script, the generated
incremental script still includes the following. Why isn't the different being ignored?
ALTER DATABASE [$(DatabaseName)]
SET ANSI_NULLS ON,
QUOTED_IDENTIFIER ON,
ANSI_NULL_DEFAULT ON
WITH ROLLBACK IMMEDIATE;