有一個類庫和一個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>
你可以發佈你的web.config? – Gromer
不,它不是一個Web應用程序,它在類庫中。 – user1166905
所以....也許你的app.config然後...? – Gromer