Dim sConnectionString As String
sConnectionString = "Server=[server name here].database.windows.net;Database=[database name here];Application Name=[something];uid=[a QL username];pwd=[a SQL password];TrustServerCertificate=True;"
Dim oCONSQL As Microsoft.Data.SqlClient.SqlConnection = Nothing
oCONSQL = New Microsoft.Data.SqlClient.SqlConnection(sConnectionString)
oCONSQL.Open()
If oCONSQL.State = ConnectionState.Open Then
Dim oCONServerConnection As Microsoft.SqlServer.Management.Common.ServerConnection = Nothing
oCONServerConnection = New Microsoft.SqlServer.Management.Common.ServerConnection(sqlConnection:=oCONSQL)
End If
There is a new nuget package for Microsoft.Data.SqlClient - build 7.0.0 - This appears to be incompatible with your latest package 181.15.0
I need to ask you to liaise with that team to make sure we can keep both nuget packages up to date.