asp.net 未能加载文件或程序集'EntityFramework,版本=6.0.0.0,

pkmbmrz7  于 2023-01-14  发布在  .NET
关注(0)|答案(8)|浏览(273)

我正在与EF合作。我正在尝试执行此行

public ActionResult Edit(string id)
{           
     return View(obj.FindSemesterById(id));
}

我在我的项目上安装了EF版本5。
但我得到这个错误:
未能加载文件或程序集“EntityFramework,Version = 6.0.0.0,Culture = neutral,PublicKeyToken = b77a5c561934e089”或它的某个依赖项。找到的程序集的清单定义与程序集引用不匹配。(HRESULT异常:0x80131040)
我的web. config文件:

<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<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=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <connectionStrings>
    <add name="EducationDBEntities" connectionString="metadata=res://*/EducationModel.csdl|res://*/EducationModel.ssdl|res://*/EducationModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=.;initial catalog=EducationDB;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
  </connectionStrings>
  <appSettings>
    <add key="webpages:Version" value="2.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="PreserveLoginUrl" value="true" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
    <authentication mode="Forms">
      <forms loginUrl="~/Account/Login" timeout="2880" />
    </authentication>
    <pages>
      <namespaces>
        <add namespace="System.Web.Helpers" />
        <add namespace="System.Web.Mvc" />
        <add namespace="System.Web.Mvc.Ajax" />
        <add namespace="System.Web.Mvc.Html" />
        <add namespace="System.Web.Optimization" />
        <add namespace="System.Web.Routing" />
        <add namespace="System.Web.WebPages" />
      </namespaces>
    </pages>
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <handlers>
      <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
      <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
      <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
      <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
      <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
    </handlers>
  </system.webServer>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
        <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
      </dependentAssembly>

    </assemblyBinding>

  </runtime>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="v11.0" />
      </parameters>
    </defaultConnectionFactory>
  </entityFramework>
</configuration>
sbtkgmzw

sbtkgmzw1#

从评论部分看,您似乎无法从公共NuGet源安装最新版本的EF,因为您的计算机无法直接访问Internet,并且无法解析www.nuget.org域。通常,如果您在Internet设置中配置代理,Visual Studio将在从公共存储库安装NuGet时使用此代理。
所以一旦你在你的项目中安装了最新的EF 6.1.0包,错误就会消失,目前你似乎在使用旧版本的包,并且你的解决方案中有需要v6的项目。

kiayqfof

kiayqfof2#

首先,检查您使用的EF版本。您可以从NuGet Packet Manager更新EF版本。
转到您的项目解决方案-〉“管理解决方案的NuGet数据包”,单击“实体框架”上的“管理”。
并且检查您的app.config。可能这里引用了错误的版本号。

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

它引用EF版本5.0.0.0

zpjtge22

zpjtge223#

打开工具〉NuGet软件包管理器〉软件包管理器控制台
然后运行

PM> install-package entityframework -version 6.0.0.0

或者您可以使用以下命令将其更新到最新版本

PM> Update-Package entityframework
v2g6jxz6

v2g6jxz64#

使用nuget卸载EF然后再次添加,清理并重建您的项目,这工作起来很有魅力。在我的情况下,“卸载”部分是至关重要的,我做了很多重新安装和更新,什么都没有。

lf5gs5x2

lf5gs5x25#

我也遇到过类似的问题和你提到的同样的错误。
我用不同的方法解决了这个问题。我注意到EntityFramework.dll被添加到了解决方案资源管理器下的packages文件夹中。所以我将EntityFramework.dll从该文件夹复制到了解决方案资源管理器下的bin文件夹中。我知道这不是你的答案,它可能对其他人有帮助,所以我只是添加了它。

50pmv0ei

50pmv0ei6#

如果您的项目名称与您引用的nuget包冲突,则可能发生这种情况。

yrwegjxp

yrwegjxp7#

我今天遇到了同样的问题。我有3个项目在一个解决方案中,其中两个有EF6.0.0.0,另一个有5.0.0.0。当我发现这个问题时,我升级了那个项目的版本。错误消失了。

**注意:**我只是简单地转到每个项目的References文件夹并查看EntityFramework的属性,以找出Entity的版本。

t3psigkw

t3psigkw8#

我的解决方案中有四个项目。这台计算机与我第一次在上使用解决方案创建的计算机不同,因此我打开了“工具”,然后打开NuGet包管理器,单击“管理解决方案的NuGet包”,找到实体框架并单击它一次。然后单击出现的“管理”按钮。
NuGet提供了安装EF到我的一个项目的解决方案,所以我这样做了。这就是当我开始得到这个错误。
返回NuGet并选中复选框以将EF安装到解决方案中的所有四个项目中,从而修复了问题。

相关问题