mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-24 01:25:42 -05:00
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:
@@ -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()
|
||||
{ }
|
||||
|
||||
|
||||
@@ -4734,4 +4734,8 @@ The Query Processor estimates that implementing the following index could improv
|
||||
<value>Columns</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="TableDesignerDeleteColumnConfirmationMessage" xml:space="preserve">
|
||||
<value>Removing a column will also remove it from the indexes and foreign keys. Are you sure you want to continue?</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
@@ -2256,3 +2256,4 @@ TableDesignerIsUniquePropertyTitle = Is Unique
|
||||
IndexColumnIsAscendingPropertyDescription = Specifies the sort order of the column.
|
||||
IndexColumnIsAscendingPropertyTitle = Is Ascending
|
||||
TableDesignerColumnsDisplayValueTitle = Columns
|
||||
TableDesignerDeleteColumnConfirmationMessage = Removing a column will also remove it from the indexes and foreign keys. Are you sure you want to continue?
|
||||
|
||||
@@ -5742,6 +5742,11 @@
|
||||
<target state="new">Columns</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="TableDesignerDeleteColumnConfirmationMessage">
|
||||
<source>Removing a column will also remove it from the indexes and foreign keys. Are you sure you want to continue?</source>
|
||||
<target state="new">Removing a column will also remove it from the indexes and foreign keys. Are you sure you want to continue?</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="MissingIndexFormat">
|
||||
<source>Missing Index (Impact {0}): {1}</source>
|
||||
<target state="new">Missing Index (Impact {0}): {1}</target>
|
||||
|
||||
Reference in New Issue
Block a user