データベースへの接続を処理する別のdllがあり、モデルとapiコンテキストが保持されています。 app.configファイルには、web.configファイルのような「働き」と私は Entity FrameworkのDLLがデータベースに接続できません
だから、私は別の、より伝統的なMVCA 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: 26 - Error Locating Server/Instance Specified)
web.config
ファイルから接続文字列をコピーし、次のエラーを得続けると、エラーが引き続き発生しかし、接続の詳細を保持しています。奇妙なことに
、次のような作品:
update-database -verbose
マイapp.config
は、次の接続文字列があります。私が言うように、この、それに
<add name="DefaultConnection"
connectionString="data source=(LocalDb)\v11.0;initial catalog=APIEntities-01;persist security info=True; Integrated Security=SSPI;MultipleActiveResultSets=True"
providerName="System.Data.SqlClient" />
とdbContext
ポイント
public ApiContext() : base("DefaultConnection")
{
}
を従来のMVCで動作しますweb.config
、しかしEntity Frameworkなどを参照するdllを使用すると、データベースを見つけることができないようです。助言がありますか?
私が原因で、接続文字列と仮定EF 6