私はSQLServerの担当者ではありませんが、クライアントのアプリケーションに取り組んでおり、最初にEFコードを介してデータベースに接続したいと考えています。
私が持っている例外メッセージは
基になるプロバイダーを開くことができませんでした
例外の詳細
ログインで要求されたデータベース[DatabaseName]を開くことができません。ログインに失敗しました
ユーザー'IISAPPPOOL \ASP.NETv4.0"のログインに失敗しました
私のウェブ設定
<add name="TraininGoDB"
providerName="System.Data.SqlClient"
connectionString="Server=LOCALPCNAME\SQLEXPRESS;Database=[DATABASENAME];Integrated Security=True;"/>
EFコンテキストとエンティティは、次のアプリ構成を使用して別のプロジェクトで定義されます
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="Data Source=(localdb)\v11.0; Integrated Security=True; MultipleActiveResultSets=True" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
</configuration>
SQL ServerExpress2008を使用しています
データベース構成またはWeb構成から問題がわからない