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 にインストールされており、プロジェクトにローカルにコピーされていないため、ビルドを実行すると、サイトがビルドされ、サーバーにもインストールされていると見なされます。

ソリューション エクスプローラーで参照を選択し、右クリックして [プロパティ] を選択し、[ローカルのコピー] を [true] に設定することで、手動で強制的にコネクタをローカルにコピーできます。

于 2013-01-24T11:30:05.207 に答える