我正在从 http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/accessing-your-models-data-from-a-controller学习 MVC4 (编辑:已修复网址)
一切正常,但我的数据库没有更新,但是当我运行项目时,记录来自某个地方,我在我的 MSSQL 中找不到该数据库。
我在 web.config 中的连接字符串是
<connectionStrings>
<add name="PurchaseInfosDbContext"
connectionString="server=lakpa-pc;Integrated Security=SSPI; User ID=sa; Password=xxxxx; database=MessInfo" providerName="System.Data.SqlClient" />
</connectionStrings>
但是在Visual Studio中,当我调试时,我得到的连接字符串为
"Data Source=.\\SQLEXPRESS;Initial Catalog=Mvc4Projects.Models.ItemsDetailsDbContext;Integrated Security=True;MultipleActiveResultSets=True"
它不应该从 web.config 中读取连接字符串吗?我没有修改任何页面上的任何连接字符串。
一种。是否有必要包含该教程中所示的 SDF 文件?我不能直接将其更新为 mdf 文件吗?