The type or namespace name 'Server' could not be found (are you missing a
using directive or an assembly reference?)
要添加哪些命名空间或程序集来解决此错误。当我使用ServerConnection
类时会引发类似的错误。
The type or namespace name 'Server' could not be found (are you missing a
using directive or an assembly reference?)
要添加哪些命名空间或程序集来解决此错误。当我使用ServerConnection
类时会引发类似的错误。
你应该参考下面的程序集
命名空间:Microsoft.SqlServer.Management.Common
程序集:Microsoft.SqlServer.ConnectionInfo(在 Microsoft.SqlServer.ConnectionInfo.dll 中)
查找发生此错误的源文件。它可能会包含一个命名空间 using 语句,例如
//make sure this dll is copied to the deployment machine
using Foo.Server; // <=====
namespace MyProject
{
public class Bar { }
}