带有 MySQL 的实体框架

Posted

技术标签:

【中文标题】带有 MySQL 的实体框架【英文标题】:Enity Framework With MySQL 【发布时间】:2014-03-24 03:14:24 【问题描述】:

我收到以下错误

“无法加载在 ADO.NET 提供程序的应用程序配置文件中注册的实体框架提供程序类型 'mysql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity' 具有不变的名称 'MySql.Data.MySqlClient' . 确保使用了程序集限定名称并且程序集可供正在运行的应用程序使用。有关详细信息,请参阅http://go.microsoft.com/fwlink/?LinkId=260882。"

但是我的项目中确实引用了 MySql.Data.dll 和 MySql.Data.Entity.dll 以及 MySql.Data.Entity.EF6.dll(来自 MySQL Connector Net 6.8.3)

这是我的 App.conf

<?xml version="1.0" encoding="utf-8"?>
 <configuration>
  <configSections>
   <!-- For more information on Entity Framework configuration, visit  http://go.microsoft.com/fwlink/?LinkID=237468 -->
   <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
 </configSections>
 <connectionStrings>
  <add name="inspectm_inspectContext" connectionString="server=--user id=--;password=--;database=--;persistsecurityinfo=True" providerName="MySql.Data.MySqlClient" />
  </connectionStrings>
<system.data>
  <DbProviderFactories>
    <add name="MySQL Data Provider"
    invariant="MySql.Data.MySqlClient"
    description=".Net Framework Data Provider for MySQL"
    type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.7.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
  </DbProviderFactories>
</system.data>
<entityFramework>
<defaultConnectionFactory type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data" />
<providers>
  <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity" />
</providers>
</entityFramework>
</configuration>

【问题讨论】:

【参考方案1】:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
  <connectionStrings>
    <add name="inspectm_inspectContext" connectionString="server=--;user id=--;password=--;database=--;persistsecurityinfo=True" providerName="MySql.Data.MySqlClient" />
  </connectionStrings>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
     <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
      <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.8.3.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"></provider>
     </providers>
  </entityFramework>
</configuration>

我的 Complete App.conf 这对我有用

首先我删除了

<DbProviderFactories>
<add name="MySQL Data Provider"
invariant="MySql.Data.MySqlClient"
description=".Net Framework Data Provider for MySQL"
type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.7.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
</DbProviderFactories>

然后我变了

<defaultConnectionFactory type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data" />

并添加了提供者

<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.8.3.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"></provider>

【讨论】:

您能否添加一些关于更改内容的说明?【参考方案2】:

对于任何面临同样问题的人,这里是导致异常的行是这个

<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity" />

只需将 .EF6 附加到 MySql.Data.Entity 以便提供程序是这样的

<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6" />

因此,您选择删除其中的代码无助于解决问题。我希望这对某人有所帮助。

【讨论】:

对于连接器 .NET 8.0,引用的文件现在是 MySql.Data.EntityFramework.dll,因此您可能必须使用 MySql.Data.EntityFramework 而不是 MySql.Data.Entity.EF6。新文件仍被视为 Framework 6。【参考方案3】:

您还可以执行以下操作

[DbConfigurationType(typeof(MySql.Data.Entity.MySqlEFConfiguration))]
public class DemoContext : DbContext

【讨论】:

什么是“DbConfigurationType”?它不是 VS 中的建议导入。 @StealthRabbi 它位于 MySql.Data.EntityFramework 命名空间中。【参考方案4】:

检查内部异常。

我明白了

"Inheritance security rules violated by type: 'MySql.Data.Entity.MySqlEFConfiguration'. Derived types must either match the security accessibility of the base type or be less accessible.":"MySql.Data.Entity.MySqlEFConfiguration"

这指向我: Inheritance security rules violated by type: 'MySql.Data.Entity.MySqlEFConfiguration'

我真的不喜欢降级。但到目前为止我还没有找到更好的答案。

【讨论】:

以上是关于带有 MySQL 的实体框架的主要内容,如果未能解决你的问题,请参考以下文章

VS 2010 - 带有 MySql 存储过程的实体框架似乎不起作用

“提供者没有返回 ProviderManifestToken 字符串”带有实体框架的 MySQL

带有 MySQL 连接器 6.4.3 的实体框架 4 自动生成表导致“列长度”异常

无法为实体框架6使用MySQL连接

将 MySQL PASSWORD() 与实体框架一起使用

如何使用实体框架和 MySQL 获取每个组的最新记录,包括相关实体