0

不知道为什么它正在寻找实体框架,但找不到它。完全不知道该做什么。

无法加载文件或程序集

在 Windows 窗体应用程序中app.config有这个

<section name="entityFramework" 
         type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />

我的web.config包含

<assemblies>
    <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</assemblies>

表格1:

  public Form1 (): base()
  {
  InitializeComponent();
  MAXFMWebEntities context = new MAXFMWebEntities();
  }
4

1 回答 1

0

更新了在使用表存储的 Azure Cloud Worker Role 中无法加载文件或程序集 Microsoft.Data.OData 版本 = 5.2.0.0 错误中建议的 app.config

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-4.4.0.0" newVersion="5.0.0.0" />
  </dependentAssembly>

于 2013-07-26T16:41:42.163 回答