繁体   English   中英

实体框架。 您的项目引用了最新版本的实体框架错误VS2017 MYSQL 8.0.12

[英]Entity Framework. Your Project References the latest version of entity framework error VS2017 MYSQL 8.0.12

我有一个具有Entity Framework 6.2的Visual Studio 2017项目

尝试创建edmx文件时出现错误

您的项目引用了Entity Framework的最新版本; 但是,找不到与您的数据连接兼容的Entity Framework数据库提供程序

我已经经历过很多次了,但始终可以通过使用连接器安装文件夹中的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>

不知道这是否仍然没有解决。 但是,下面的解决方案可能对正在苦苦挣扎的人有所帮助。

没关系安装任何版本的连接器都没关系,因为在VS 2017中不会自动引用该连接器。唯一重要的是“ MySQL for Visual Studio”。

  1. 安装“ MySQL for visual studio” (最好是任何最新版本1.2.8或2.0.5),如果您在尝试安装2.0.5时遇到任何问题,请遵循以下链接: https : //forums.mysql.com/read。 php?174,664930,664971

  2. 在您的项目中,将Nuget引用添加到“ MySQL.Data.EntityFrameWork ”(V 8.0.13或更高版本)

默认情况下,它将创建以下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搭配使用时效果很好

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM