use a config for table designer trigger behavior (#2070)

This commit is contained in:
Hai Cao
2023-05-18 10:09:24 -07:00
committed by GitHub
parent cb6dfeb68d
commit c6e53ea753
2 changed files with 8 additions and 1 deletions

View File

@@ -14,5 +14,10 @@ namespace Microsoft.SqlTools.ServiceLayer.SqlContext
/// Whether the database model should be preloaded to make the initial launch quicker.
/// </summary>
public bool PreloadDatabaseModel { get; set; } = false;
/// <summary>
/// Whether the table designer should allow disabling and re-enabling DDL triggers during publish.
/// </summary>
public bool AllowDisableAndReenableDdlTriggers {get; set; } = true;
}
}