我使用 EF 5 Code First 创建了我的应用程序域模型。然后,我尝试通过运行 aspnet_reqsql.exe 实用程序在我的数据库中生成成员资格表,将其与 ASP.NET 默认成员资格提供程序挂钩。
这似乎工作正常,因为当我在 SQL Management Studio 中检查数据库时,所有成员表以及我的 Code First 表都在那里。
现在,我们运行我的应用程序,一切似乎都很好,它加载完毕,我可以浏览页面了。但是,只要我浏览需要会员资格的内容(例如登录页面),应用程序就会中断。我收到带有以下消息的黄屏死机:
Server Error in '/' Application.
Connection string "DefaultConnection" was not found.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: Connection string "DefaultConnection" was not found.
Source File: c:\Users\XXX\Documents\Visual Studio 2012\Projects\YourApp\YourApp\Filters\InitializeSimpleMembershipAttribute.cs Line: 41
有一个用户的这个线程遇到了类似的问题,但是我已经实现了他的解决方案,事实上我必须注释掉web.config
. 我已经这样做了,但仍然没有成功。
我究竟做错了什么?