应该如何在MVC 4中编写连接字符串

时间:2015-01-11 14:44:59

标签: sql-server connection-string

我刚安装了适用于Web的Visual Studio 2012 Express版本,我正在尝试连接到Mvc 4项目中的localdb。

在Sql Server Management Studio中,我能够像这样成功连接:

enter image description here

我的连接字符串(在应用程序中)如下所示:

connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=test;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\test.mdf"

但是,我收到错误消息"在建立与SQL Server的连接时发生了与网络相关或特定于实例的错误。找不到服务器或无法访问服务器。"

这里有什么问题吗?

1 个答案:

答案 0 :(得分:0)

尝试在this article中使用Integrated Security作为True作为explainind进行示例:

Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\test.mdf;Integrated Security=True

确保计算机上正在运行Sql Server服务。

另一方面,您可以查看www.connectionstrings.com。为每个不同的场景找到正确的连接字符串是一个很好的网站。