mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-03 17:24:53 -05:00
add foreign keys and constraints (#1316)
* add foreign keys and constraints * add property name
This commit is contained in:
@@ -8509,6 +8509,78 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableDesignerIsEnabledPropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableDesignerIsEnabledPropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ForeignKeyIsEnabledDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ForeignKeyIsEnabledDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ForeignKeyIsNotForReplicationTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ForeignKeyIsNotForReplicationTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ForeignKeyIsNotForReplicationDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ForeignKeyIsNotForReplicationDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SqlForeignKeyAction_NoAction
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SqlForeignKeyAction_NoAction);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SqlForeignKeyAction_Cascade
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SqlForeignKeyAction_Cascade);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SqlForeignKeyAction_SetNull
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SqlForeignKeyAction_SetNull);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SqlForeignKeyAction_SetDefault
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SqlForeignKeyAction_SetDefault);
|
||||
}
|
||||
}
|
||||
|
||||
public static string CheckConstraintIsEnabledDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.CheckConstraintIsEnabledDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ConnectionServiceListDbErrorNotConnected(string uri)
|
||||
{
|
||||
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
|
||||
@@ -8794,6 +8866,11 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.InvalidTableEditPathException, path, editType);
|
||||
}
|
||||
|
||||
public static string UnKnownSqlForeignKeyAction(string name)
|
||||
{
|
||||
return Keys.GetString(Keys.UnKnownSqlForeignKeyAction, name);
|
||||
}
|
||||
|
||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
public class Keys
|
||||
{
|
||||
@@ -12153,6 +12230,36 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string TableColumnIdentitySeedPropertyDescription = "TableColumnIdentitySeedPropertyDescription";
|
||||
|
||||
|
||||
public const string TableDesignerIsEnabledPropertyTitle = "TableDesignerIsEnabledPropertyTitle";
|
||||
|
||||
|
||||
public const string ForeignKeyIsEnabledDescription = "ForeignKeyIsEnabledDescription";
|
||||
|
||||
|
||||
public const string ForeignKeyIsNotForReplicationTitle = "ForeignKeyIsNotForReplicationTitle";
|
||||
|
||||
|
||||
public const string ForeignKeyIsNotForReplicationDescription = "ForeignKeyIsNotForReplicationDescription";
|
||||
|
||||
|
||||
public const string SqlForeignKeyAction_NoAction = "SqlForeignKeyAction_NoAction";
|
||||
|
||||
|
||||
public const string SqlForeignKeyAction_Cascade = "SqlForeignKeyAction_Cascade";
|
||||
|
||||
|
||||
public const string SqlForeignKeyAction_SetNull = "SqlForeignKeyAction_SetNull";
|
||||
|
||||
|
||||
public const string SqlForeignKeyAction_SetDefault = "SqlForeignKeyAction_SetDefault";
|
||||
|
||||
|
||||
public const string UnKnownSqlForeignKeyAction = "UnKnownSqlForeignKeyAction";
|
||||
|
||||
|
||||
public const string CheckConstraintIsEnabledDescription = "CheckConstraintIsEnabledDescription";
|
||||
|
||||
|
||||
private Keys()
|
||||
{ }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user