Feature rename sql objects (#1686)

This commit is contained in:
M-Patrone
2022-09-22 23:42:23 +02:00
committed by GitHub
parent ec1bb0e9ec
commit 88eaa64755
6 changed files with 294 additions and 1 deletions

View File

@@ -9613,6 +9613,14 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string ErrorConnectionNotFound
{
get
{
return Keys.GetString(Keys.ErrorConnectionNotFound);
}
}
public static string ConnectionServiceListDbErrorNotConnected(string uri)
{
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
@@ -13878,6 +13886,8 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string GetUserDefinedObjectsFromModelFailed = "GetUserDefinedObjectsFromModelFailed";
public const string ErrorConnectionNotFound = "ErrorConnectionNotFound";
private Keys()
{ }

View File

@@ -2415,4 +2415,7 @@ TableDesignerConfirmationText = I have read the summary and understand the poten
SqlProjectModelNotFound(string projectUri) = Could not find SQL model from project: {0}.
UnsupportedModelType(string type) = Unsupported model type: {0}.
GetUserDefinedObjectsFromModelFailed = Failed to get user defined objects from model.
GetUserDefinedObjectsFromModelFailed = Failed to get user defined objects from model.
#ObjectManagement Service
ErrorConnectionNotFound = The connection could not be found