我使用nhibernate并访问mysql db。 当我在本地工作时,一切都很好,但我发布了应用程序,并将其上传到godaddy.com,我得到以下例外:
Unable to find the requested .Net Framework Data Provider. It may not be installed.
所以它可能与连接字符串的providerName有关。
这是我的连接字符串:
<add name="ConnectionString" connectionString="Server=Server; Port=3306; Database=dbname; Uid=Id; Pwd=Pass" providerName="System.Data.SqlClient" />
如果您想知道,我可以在本地工作时访问服务器中的数据库。
我该怎么办?