事件发生了:
我创建了一个Web API项目' EmployeeService'。 在解决方案' EmployeeDataAccess'中添加了一个类库项目。 添加了一个名为' EmployeeDataModel.edmx'的ADO.Net实体数据模型。 从数据库附加数据表 建造它。 添加了' EmployeeDataAccess'参考Web API项目EmployeeService 添加了一个新的控制器' EmployeesController'
现在,当我尝试编写'使用EmployeeDataAccess'时,会出现一条错误,说明找不到类型或命名空间名称(您是否缺少using指令或程序集引用?) '
App.Config看起来像这样
<?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=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="EmployeeDBEntities" connectionString="metadata=res://*/EmployeeDataModel.csdl|res://*/EmployeeDataModel.ssdl|res://*/EmployeeDataModel.msl;provider=System.Data.SqlClient;provider connection string="data source=.\SQLExpress;initial catalog=EmployeeDB;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>