我正在尝试添加新的MySql数据库连接。我的MySql.Data版本是6.9.9.0,在我的EFModel项目的app.config和项目的Nuget Package Manager中被引用。
当我测试它时,与我的服务器的连接已经建立,但是当我点击“确定”时它会显示错误:
“无法加载文件或程序集”MySql.data,Version = 6.9.8.0, Culture = Neutral,PublicKeyToken = BigNumber'或他的一个依赖项。 找到的程序集清单的定义并不对应 大会的参考。“
问题是我的解决方案中没有在任何配置文件中写入此版本。
这是我的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="server=***;user id=***;password=***;database=***"" 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中列出,这是我的情况。我真的不明白是什么原因引起的。
请帮忙! :/
答案 0 :(得分:1)
我只需卸载MySql Connector 6.9.10然后安装6.9.8.0版本,如我答案顶部的重复链接中所述,我没有添加新连接,我的基础是这两个相连的项目展示得很好!
这个以前版本的MySql Connector的链接是一个很难找到的屁股,据我说!
但现在我松了一口气,希望这可以帮助其他人:D
答案 1 :(得分:0)
没有太多搜索。它告诉你它正在尝试加载的程序集与application.config文件中引用的程序集的版本不匹配。
在此处引用替代问题:
.NET程序集加载程序无法找到1.2.0.203,但确实找到了1.2.0.200。此程序集与请求的内容不匹配,因此您收到此错误。简单来说,它找不到引用的程序集。确保通过将其放入GAC或应用程序路径中找到正确的程序集。
The located assembly's manifest definition does not match the assembly reference
这也与另一个答案相关:The located assembly’s manifest definition with name xxx.dll does not match the assembly reference
希望有所帮助。
答案 2 :(得分:0)
当.csproj文件中的MySql.data版本与App.config文件中的版本不匹配时(由于手动更改等),可能会发生这种情况。尝试卸载该软件包,然后重新添加。