编程语言
首页 > 编程语言> > c# – EF Core无法连接到服务器 – 与网络相关或特定于实例的错误

c# – EF Core无法连接到服务器 – 与网络相关或特定于实例的错误

作者:互联网

重要提示:在人们指出常见原因之前,连接字符串在本地计算机上的一个项目中工作,而不是在同一本地计算机上连接到SAME数据库的同一本地实例上的另一个项目.

我有一个奇怪的问题.我有2个EF核心项目.我在第一个项目中的连接字符串工作正常.我可以输入“dotnet ef database update”,它会将我的迁移推送到LOCAL数据库.我复制粘贴下面的字符串确实到我的第二个项目,它会抛出错误:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 – Could not open a connection to SQL Server)

这是我的连接字符串:

Server=.;Database=RAMSAPPDB;Integrated Security=False;Persist Security Info=True;MultipleActiveResultSets=True;

我想不出为什么在我的其他项目中尝试添加到SAME数据库中使用此连接字符串会导致此错误的一个原因.在推送第二个项目中的迁移之前,我尝试删除RAMSAPPDB中的所有表,但它不起作用.

如果我注释掉“ConnectionString”,我会收到错误

connectionString cannot be blank

所以我知道它在我的appsettings.json中使用连接字符串.

任何关于可能原因的想法都将不胜感激.谢谢.

解决方法:

我解决了很久以前我写过这篇文章而忘记了

 protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{

optionsBuilder.UseSqlServer("Server=.\\SQLEXPRESS;Database=MYDB;Integrated     Security=True;MultipleActiveResultSets=True;");

}

我在运行“dotnet ef database update”命令时使用了我的DbContext类.我以为它正在使用我的appsettings.json中的内容.

标签:c,asp-net-web-api,entity-framework,asp-net-core,asp-net-core-webapi
来源: https://codeday.me/bug/20190611/1217848.html