mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-08 09:38:25 -05:00
use path to identify edit target (#1292)
* use path to identify edit target * async action * revert RequestContext change * comments * address comments * fix test
This commit is contained in:
@@ -8445,6 +8445,70 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableEditPathNotProvidedException
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableEditPathNotProvidedException);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableColumnIdentityGroupName
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableColumnIdentityGroupName);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableColumnIsIdentityPropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableColumnIsIdentityPropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableColumnIsIdentityPropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableColumnIsIdentityPropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableColumnIdentityIncrementPropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableColumnIdentityIncrementPropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableColumnIdentityIncrementPropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableColumnIdentityIncrementPropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableColumnIdentitySeedPropertyTitle
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableColumnIdentitySeedPropertyTitle);
|
||||
}
|
||||
}
|
||||
|
||||
public static string TableColumnIdentitySeedPropertyDescription
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.TableColumnIdentitySeedPropertyDescription);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ConnectionServiceListDbErrorNotConnected(string uri)
|
||||
{
|
||||
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
|
||||
@@ -8710,6 +8774,16 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
return Keys.GetString(Keys.NameValuePair, name, value);
|
||||
}
|
||||
|
||||
public static string TableNotInitializedException(string tableId)
|
||||
{
|
||||
return Keys.GetString(Keys.TableNotInitializedException, tableId);
|
||||
}
|
||||
|
||||
public static string InvalidTableEditPathException(string path, string editType)
|
||||
{
|
||||
return Keys.GetString(Keys.InvalidTableEditPathException, path, editType);
|
||||
}
|
||||
|
||||
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
public class Keys
|
||||
{
|
||||
@@ -12033,6 +12107,36 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
public const string SizeInTeraBytesFormat = "SizeInTeraBytesFormat";
|
||||
|
||||
|
||||
public const string TableNotInitializedException = "TableNotInitializedException";
|
||||
|
||||
|
||||
public const string TableEditPathNotProvidedException = "TableEditPathNotProvidedException";
|
||||
|
||||
|
||||
public const string InvalidTableEditPathException = "InvalidTableEditPathException";
|
||||
|
||||
|
||||
public const string TableColumnIdentityGroupName = "TableColumnIdentityGroupName";
|
||||
|
||||
|
||||
public const string TableColumnIsIdentityPropertyTitle = "TableColumnIsIdentityPropertyTitle";
|
||||
|
||||
|
||||
public const string TableColumnIsIdentityPropertyDescription = "TableColumnIsIdentityPropertyDescription";
|
||||
|
||||
|
||||
public const string TableColumnIdentityIncrementPropertyTitle = "TableColumnIdentityIncrementPropertyTitle";
|
||||
|
||||
|
||||
public const string TableColumnIdentityIncrementPropertyDescription = "TableColumnIdentityIncrementPropertyDescription";
|
||||
|
||||
|
||||
public const string TableColumnIdentitySeedPropertyTitle = "TableColumnIdentitySeedPropertyTitle";
|
||||
|
||||
|
||||
public const string TableColumnIdentitySeedPropertyDescription = "TableColumnIdentitySeedPropertyDescription";
|
||||
|
||||
|
||||
private Keys()
|
||||
{ }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user