亚音速 DAL,未找到组件

本文关键字:组件 DAL 亚音速 | 更新日期: 2023-09-27 18:36:34

我已经为一个 .NET4.0应用程序,使用c#和mysql。然而,当我使用集合时,我有以下例外:

AnagraficaCategorieCollection a = new AnagraficaCategorieCollection().Load();

告诉我它无法加载或找到程序集 MySql.Data,版本 5.2.3.0。

我的项目引用了较新的版本。我怎么可能解决这个问题?

亚音速 DAL,未找到组件

解决方案是使用程序集重定向,它告诉框架使用较新版本的MySql.Data。要添加重定向,请将其放入您的 web/app.config 中:

<runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
      <assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
      <bindingRedirect oldVersion="5.0.0.0-6.5.3.0" newVersion="6.5.4.0"/>
    </dependentAssembly>
  </assemblyBinding>
</runtime>

请注意,您可能需要更改版本号以匹配当前程序集。