table designer - support second level entities (#1381)

* support secondary entities

* new table info for existing table scenario

* delete column confirmation

* vbump Dacfx
This commit is contained in:
Alan Ren
2022-02-02 13:40:45 -08:00
committed by GitHub
parent f57d6b59f6
commit 3c93d57730
10 changed files with 82 additions and 46 deletions

View File

@@ -8645,6 +8645,14 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string TableDesignerDeleteColumnConfirmationMessage
{
get
{
return Keys.GetString(Keys.TableDesignerDeleteColumnConfirmationMessage);
}
}
public static string ConnectionServiceListDbErrorNotConnected(string uri)
{
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
@@ -12372,6 +12380,9 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string TableDesignerColumnsDisplayValueTitle = "TableDesignerColumnsDisplayValueTitle";
public const string TableDesignerDeleteColumnConfirmationMessage = "TableDesignerDeleteColumnConfirmationMessage";
private Keys()
{ }