0

この MVC4 Web アプリケーションを作成し、ローカル MDF (localdb?) を使用しました。私のプロジェクトの\App_Dataフォルダにあります。その名はSiteDatabase.mdf

しかし、現在、接続文字列に苦労しています。どうすれば「リンク」できますか?

私はこれを得た:

<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=SiteDatabase;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\SiteDatabase.mdf" providerName="System.Data.SqlClient" />

SiteDatabase.mdf が私のApp_Dataフォルダーにある場所。

私が得ているエラー:

Server Error in '/' Application.

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: SQL Network Interfaces, error: 50 - Local Database Runtime error occurred. Cannot create an automatic instance. See the Windows Application event log for error details.)
4

2 に答える 2

0

接続文字列の前に追加してみてください

<remove name="LocalSqlServer" />
于 2013-06-24T08:30:08.887 に答える