asp.net – 此操作需要连接到“主”数据库

前端之家收集整理的这篇文章主要介绍了asp.net – 此操作需要连接到“主”数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我突然开始在我的asp.net MVC 4 Web应用程序中出现错误.

错误是:

This operation requires a connection to the ‘master’ database. Unable
to create a connection to the ‘master’ database because the original
database connection has been opened and credentials have been removed
from the connection string. Supply an unopened connection.

代码中没有任何变化 – 数据库访问在整个代码的其余部分都很好.

它停在这条线上:

var filteredContacts = dc.EAContactLists.Where(o => teams.Contains(o.Team)).ToList();

我迷失在这一个.

解决方法

尝试在连接字符串中设置Persist Security Info = True.

希望这可以帮助.

原文链接:https://www.f2er.com/aspnet/249990.html

猜你在找的asp.Net相关文章