0
錯誤我正在此:充分利用實體框架(類型初始化除外)
爲的類型初始值‘System.Data.Entity.Internal.AppConfig’引發了異常。
在我的實體框架中的錯誤。
我看了這個Question和可能的答案,但是他們沒有爲我工作。這是我的App.config文件:
<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="SalesReportEntities"
connectionString="metadata=res://*/SalesReportModel.csdl
|res://*/SalesReportModel.ssdl
|res://*/SalesReportModel.msl;
provider=System.Data.SqlClient;
provider connection string="data source=.;
initial catalog=Training;
integrated security=True;
MultipleActiveResultSets=True;
App=EntityFramework""
providerName="System.Data.EntityClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>
其他可能的事情會導致此錯誤?
其實你是對的!這個問題與你提到的第四個問題有關(我的意思是在我的情況下)。我卸載並重新安裝,並且我意識到我沒有在第一個中正確管理我的實體框架。再次,非常感謝! –
沒有問題,與EF6祝你好運。它與Linq結合使用非常有用,並且瞭解它如何工作只是戰鬥的一半。 – djangojazz