我有一个包含我的Entity Framework生成的模型和DBContext的项目。我试图从另一个具有以下配置文件的项目中引用该项目:
<?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>
<entityFramework>
但是,只要我实例化上下文:using (var db = new DataDB()) { ... }
我就会收到以下错误:
未处理的类型&#39; System.InvalidOperationException&#39;发生在mscorlib.dll
其他信息:实体框架提供程序类型&#39; System.Data.Entity.SqlServer.SqlProviderServices,EntityFramework.SqlServer&#39;在具有不变名称&System; System.SData.SqlClient&无法加载。确保使用了程序集限定名称,并且程序集可供正在运行的应用程序使用。有关详细信息,请参阅http://go.microsoft.com/fwlink/?LinkId=260882。
我还为我的项目安装了EF。不确定还需要配置什么才能使其正常工作?
答案 0 :(得分:0)
如果有人在寻找,您可能已在单独的项目中创建了模型。您需要为EntityFramework和EntityFramework.SqlServer
添加引用