我正在使用VisualStudio2012进行开发。我创建了一个类库EMPDAL
,其中我使用NorthWnd
数据库的Employees表来连接Entity Framework,我在配置数据库时测试了连接。我在下面写了代码来获取员工的详细信息。
public class EmplooyeeData
{
public static List<Employee> GetEmployees( int EmployeeId)
{
using (DbEntities dbContext = new DbEntities())
{
return dbContext.Employees.Where(x => x.EmployeeID == EmployeeId).ToList();
}
}
}
我创建了一个控制台应用程序来使用此EMPDAL
,因此我已经提供了对EMPDAL
的引用,并使用下面的代码来检索员工详细信息
static void Main(string[] args)
{
List<EmpDAL.Employee> emp = new List<EmpDAL.Employee>();
emp = EmpDAL.EmplooyeeData.GetEmployees(1);
}
但是当客户端代码调用GetEmployees(1)
并且调试器进入EMPDAL.EmpDataGetEmployess
方法时,则在return语句中抛出异常![异常如下所示]
底层提供程序在Open上失败。
AppConfig我在我的类库和客户端应用程序中使用了它。
<?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=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="DbEntities" connectionString="metadata=res://*/EmployeeModel.csdl|res://*/EmployeeModel.ssdl|res://*/EmployeeModel.msl;provider=System.Data.SqlClient;provider connection string="data source=localhost;initial catalog=NorthWnd;user id=sa;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
</entityFramework>
</configuration>
答案 0 :(得分:0)
您已经提到了至少两个层的应用程序(类库和控制台应用程序)。 N层应用程序要求您在您的应用程序引用实体框架的所有层的web.config / app.config中声明EF数据库的连接字符串。
确保您的控制台应用程序app.config以及类库的app.config中列出了数据库的连接字符串。
根据@Yuliam的上述评论,确保您的连接字符串中包含以下内容:
Integrated security=True;
这样做当它设置为True时,如果您指定用户和密码,.Net会尝试打开与当前用户事件的连接。如果要以特定用户身份打开连接字符串,请将Integrated Security设置为False。