无法加载文件或程序集' MySql.Data,Version = 6.3.6.0

时间:2012-03-02 02:50:25

标签: asp.net mysql entity-framework entity-framework-4.1 mysql-connector

我正处于完全失败状态 - 我对我仍然无法理解的内容存在超级奇怪的问题...我正在运行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版本的任何随机引用,但我一无所获!

我迷失了,我没有在哪里。我非常感谢任何关于此的指导,非常感谢。

1 个答案:

答案 0 :(得分:5)

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

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

将Dlls放入bin文件夹。

相关问题