添加&#39;使用<class library =“”>&#39;时出错到Web API项目

时间:2017-05-11 08:24:53

标签: c# asp.net xml entity-framework asp.net-web-api

事件发生了:

我创建了一个Web API项目&#39; EmployeeService&#39;。 在解决方案&#39; EmployeeDataAccess&#39;中添加了一个类库项目。 添加了一个名为&#39; EmployeeDataModel.edmx&#39;的ADO.Net实体数据模型。 从数据库附加数据表 建造它。 添加了&#39; EmployeeDataAccess&#39;参考Web API项目EmployeeService 添加了一个新的控制器&#39; EmployeesController&#39;

现在,当我尝试编写&#39;使用EmployeeDataAccess&#39;时,会出现一条错误,说明找不到类型或命名空间名称(您是否缺少using指令或程序集引用?) &#39;

enter image description here

enter image description here

enter image description here

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=&quot;data source=.\SQLExpress;initial catalog=EmployeeDB;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework&quot;" 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>

enter image description here

0 个答案:

没有答案