gpt4 book ai didi

mysql - 尝试添加新的数据库连接时出现错误 "Could not load file or assembly MySql.data"

转载 作者:行者123 更新时间:2023-11-29 05:58:30 25 4
gpt4 key购买 nike

我正在尝试添加一个新的 MySql 数据库连接。我的 MySql.Data 版本是 6.9.9.0,在我的 EFModel 项目的 app.config 和项目的 Nuget 包管理器中引用为这个版本。

当我测试它时,与我的服务器建立了良好的连接,但是当我单击“确定”时它显示错误:

"Could not load file or assembly 'MySql.data, Version=6.9.8.0, Culture=Neutral, PublicKeyToken=BigNumber' or one of his dependencies. The found definition of the assembly's manifest doesn't correspond to the reference of the assembly."

问题是这个版本没有写在我的任何配置文件的解决方案中。

这是我的 app.config 文件:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />

<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --></configSections>
<entityFramework codeConfigurationType="MySql.Data.Entity.MySqlEFConfiguration, MySql.Data.Entity.EF6">
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6" />
</providers>
</entityFramework>
<connectionStrings>
<add name="UphairDbEntities" connectionString="metadata=res://*/DbModel.csdl|res://*/DbModel.ssdl|res://*/DbModel.msl;provider=MySql.Data.MySqlClient;provider connection string=&quot;server=***;user id=***;password=***;database=***&quot;" providerName="Mysql.Data.MysqlClient" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<system.data>
<DbProviderFactories>
<remove invariant="MySql.Data.MySqlClient" name="MySQL Data Provider" />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
</DbProviderFactories>
</system.data>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.8.3.0" newVersion="6.8.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

我为此苦苦挣扎了 3 天,但在 SO 或互联网上找不到任何解决方案或相关问题,因为我发现的每个问题都不是关于向数据库添加新连接,也不是关于错误中显示的版本没有在 app.config 中列出,这是我的情况。我真的不明白是什么原因造成的。

请帮忙! :/

最佳答案

Conflicting versions of MySql.Data.dll in .Net project not allowing me to add/edit TableAdapters in my DataSets

我只需卸载 MySql 连接器 6.9.10,然后安装 6.9.8.0版本如我答案顶部的重复链接中所述,我不必添加新连接,我的两个连接项目的基础显示得很好!

根据我的说法,这个指向以前版本的 MySql Connector 的链接很难找到!

但现在我很放心,希望这可以帮助其他人 :D

关于mysql - 尝试添加新的数据库连接时出现错误 "Could not load file or assembly MySql.data",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47192459/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com