Add error for sql bindings when .net 5 (#1259)

* add error for sql bindings when .net 5

* add test

* cleanup linq stuff and move out common code
This commit is contained in:
Kim Santiago
2021-10-07 16:13:53 -07:00
committed by GitHub
parent f2da10f23a
commit 0f0df25119
10 changed files with 121 additions and 19 deletions

View File

@@ -3053,6 +3053,14 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string SqlBindingsNet5NotSupported
{
get
{
return Keys.GetString(Keys.SqlBindingsNet5NotSupported);
}
}
public static string ConnectionServiceListDbErrorNotConnected(string uri)
{
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
@@ -4571,6 +4579,9 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string MoreThanOneAzureFunctionWithName = "MoreThanOneAzureFunctionWithName";
public const string SqlBindingsNet5NotSupported = "SqlBindingsNet5NotSupported";
private Keys()
{ }