0

我想在 ISS-Server (Windows Server 2008) 上运行 ASP.Net 应用程序。

我已经安装了“MySQL-Connector”和 MySQL-DB。我发布了 ASP.Net 应用程序并将结果复制到 wwwroot 文件夹中。

当我尝试运行该应用程序时,出现以下错误消息:

Unable to find the requested .Net Framework Data Provider.  It may not be installed. 
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.ArgumentException: Unable to find the requested .Net Framework Data Provider.  It may not be installed.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  

Stack Trace: 


[ArgumentException: Unable to find the requested .Net Framework Data Provider.  It may not be installed.]
   System.Data.Common.DbProviderFactories.GetFactory(String providerInvariantName) +1402071
   System.Data.EntityClient.EntityConnection.GetFactory(String providerString) +34

我无法弄清楚为什么会抛出这个错误,因为我肯定安装了连接器。我应该在 Web.Config 或其他地方添加一些东西吗?

4

1 回答 1

2

您发布的构建是否包含连接器?检查 bin 文件夹。

很可能您的连接器已安装到开发机器上的 GAC,并且它不会在本地复制到项目中,因此当您进行构建时,它只会构建站点并假设您也已将其安装在服务器上。

您可以手动强制它在本地复制连接器,方法是在解决方案资源管理器中选择引用,右键单击并选择属性并将 Copy Local 设置为 true。

于 2013-01-24T11:30:05.207 回答