有一个类库和一个 WPF 应用程序,我试图在类库中包含所有实体框架项,并使用一个接口来获取信息。一切都已设置,但每次尝试时都会收到此消息:
消息“'System.Data.Entity.Internal.AppConfig' 的类型初始化程序引发了异常。”
当我查看内部异常时,它似乎找不到 EntityFramework 的 5.0.0.0 版本,当我检查它的参考时,它是 4.4.0.0。尝试通过 NuGet 卸载并重新安装 EntityFramework 但没有运气。关于下一步尝试什么的任何想法?
应用配置:
<?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=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
</entityFramework>
</configuration>