数据库
首页 > 数据库> > asp.net – 无法加载文件或程序集’MySql.Data,Version = 6.3.6.0

asp.net – 无法加载文件或程序集’MySql.Data,Version = 6.3.6.0

作者:互联网

我完全失去了 – 我有一些我甚至还不理解的超级奇怪的问题……我正在运行Entity Framework 4.1,MySql 5.xx而我的MySql Connector是v 6.4.4 – 一切正常但是每当我上传到我收到的服务器时,本地都是美丽的:

Could not load file or assembly 'MySql.Data, Version=6.3.6.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.IO.FileLoadException: Could not load file or assembly 'MySql.Data, Version=6.3.6.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

Source Error:

Line 48:         /// Initializes a new proventradesEntities object using the connection string found in the 'proventradesEntities' section of the application configuration file.
Line 49:         /// </summary>
Line 50:         public proventradesEntities() : base("name=proventradesEntities", "proventradesEntities")
Line 51:         {
Line 52:             this.ContextOptions.LazyLoadingEnabled = false;


Source File: e:\web\proventrade\htdocs\App_Code\ProvenTrades.Designer.cs    Line: 50

Assembly Load Trace: The following information can be helpful to determine why the assembly 'MySql.Data, Version=6.3.6.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d' could not be loaded.

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

我很困惑,我很肯定我的Bin目录中有MySql 6.4.4 dll,我的Web.config也使ZERO引用了6.3.6版本 – 我搜索了整个项目(使用全局查找)6.3. 6,甚至只是为了MySql,看看我是否可以找到任何随机引用这个流氓6.3.6版本,但我什么都没发现!

我很迷茫,没有在哪里.我非常感谢任何关于此的指导,非常感谢提前.

解决方法:

您必须将提供程序库添加到Web应用程序中的bin目录和web.config中的register provider

然后你必须下载连接器.Net Mono here.

并将Dlls放入bin文件夹.

标签:mysql-connector,mysql,entity-framework,asp-net,entity-framework-4-1
来源: https://codeday.me/bug/20190902/1790734.html