实体框架您的项目引用了最新版本的实体框架error vs2017 mysql 8.0.12

ibps3vxo  于 2021-06-19  发布在  Mysql
关注(0)|答案(1)|浏览(441)

我有一个visual studio 2017项目,它有entity framework 6.2
当试图创建edmx文件时,我得到了一个错误
您的项目引用最新版本的实体框架;但是,无法为您的数据连接找到与此版本兼容的实体框架数据库提供程序
我已经有过很多次了,但它总是通过使用连接器安装文件夹中的DLL并对app.config进行一些更改来修复
但是我现在不能这样做。我不知道下一步该怎么做。。。我正在使用mysql 8.0.12
这是我的app.config

<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>
  <entityFramework>
    <defaultConnectionFactory type="MySql.Data.Entity.MySqlConnectionFactory, MySql.Data.Entity.EF6" />
    <providers>
      <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6" />
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-8.0.12.0" newVersion="8.0.12.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
ebdffaop

ebdffaop1#

不确定这个问题是否解决了。但是,下面的解决方案可能对正在挣扎的人有所帮助。
不管您是否安装了任何版本的连接器,因为它不会在vs 2017中自动引用。唯一重要的是“mysql for visualstudio”。
安装“mysql for visual studio”(最好是最新版本1.2.8或2.0.5),如果您在尝试安装2.0.5时遇到任何问题,请按照以下链接进行操作:https://forums.mysql.com/read.php?174,664930,664971
在您的项目中,添加对“mysql.data.entityframework”(v8.0.13或更高版本)的nuget引用
默认情况下,它将创建以下app.config文件

<?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>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="mssqllocaldb" />
      </parameters>
    </defaultConnectionFactory>
    <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.EntityFramework, Version=8.0.13.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d">
      </provider></providers>
  </entityFramework>
</configuration>

就这样。。它应该很好用。我花了2天多的时间,搜索了整个google(几乎),发现所有的参考/说明/建议都指向“mysql.data.entity.ef6”。。而“mysql.data.entityframework”在vs 2017上运行良好

相关问题