我正在使用Visual Studio 2012 MVC 4连接数据库SQL SERVER Management Studio 2012。
我正处于异常
之下System.Data.Entity.Core.EntityException发生在EntityFramework.SqlServer.dll中,但未在用户代码中处理 附加信息:基础提供程序在Open上失败。
public Actionresult Details(int id) {EmployeeContext employeeContext = new EmployeeContext();
Employee employee = employeeContext.Employees.Single(x => x.EmployeeId == id); return View(employee);}
有时我在使用连接字符串
时会遇到异常 <connectionStrings> <add name="EmployeeContext" connectionString="server=.; database=Sample; integrated security=SSPI"
providerName="System.Data.SqlClient"/>
System.Data.SqlClient.SqlException:无法打开登录请求的数据库“Sample”。登录失败。 用户'NT AUTHORITY \ SYSTEM'登录失败。