我不是 sql server 人,但我正在开发客户端的应用程序,并希望首先通过 EF 代码连接到数据库
我的异常消息是
底层提供者打开失败
异常详情
无法打开登录请求的数据库 [DatabaseName]。登录失败
用户“IIS APPPOOL\ASP.NET v4.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 Server Express 2008
不知道来自数据库配置或网络配置的问题