我正在尝试使用 ASP.Net MVC3、Entity Framework 和 MySQL 创建一个 Web 应用程序。
我已将以下代码添加到我的 Web.Config 文件中。
<connectionStrings>
<add name="ContactContext" connectionString="server=localhost;database=contacts;uid=root;pwd=password;" providerName="MySql.Data.MySqlClient"/>
</connectionStrings>
我还在项目“Contact_Me”中创建了“Person”模型、“ContactContext”。当我尝试创建一个包含人员模型和联系人上下文的“ContactController”时,它给了我以下错误
“无法检索“Connect_Me.Models.Persons”的元数据。提供者未返回 ProviderManifestToken 字符串”
MYSQ & MVC3 SQL 连接错误 \ProviderManifestToken 但我使用的是 MySQL,这是最接近我的问题。但是答案并没有解决我的问题。
提前致谢