在Visual Studio中制作Entity Framework 6模型会关闭向导并断开MYSQL连接数据库的连接

问题描述

这是MysqL VS集成中的一个已知错误bug 91195

其他一些用户发布了在该链接上找到的解决方法。您可能需要等待Oracle发布不会崩溃的VS插件

解决方法

我试着使用实体框架6到Net.Framework类库添加ADO.Net实体数据模型,但是当我拿到第3步,当你选择的框架版本,它会立即关闭该向导,我对我的MySQL数据库连接这关闭前显示的内容会自动断开。

我的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>
  <connectionStrings>
    <add name="MyContext" providerName="MySql.Data.MySqlClient"
        connectionString="server=localhost;port=3306;database=mycontext;uid=root;password=********"/>
</connectionStrings>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory,EntityFramework"/>
    <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="Google.Protobuf" publicKeyToken="a7d26565bac4d604" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-3.6.1.0" newVersion="3.6.1.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

我已经使用NuGet安装了安装在类库中的Entity Framework 6.20,Mysql.Data 8.0.12,MySql.Data.Entity
6.10.8,Google.Protobuf 3.6.1,并将其添加为引用。而且我已经重新安装,更新,使用了MYSQL Installer,但运气不佳。

我也有一个Net.Core Web API应用程序作为第一个项目,但是我知道Net.core不支持Framework
6,仅支持实体核心,因此您必须添加net.framework类库并将这些引用添加到图书馆

只是要注意,我 没有
(与图片一样)与“找不到实体Framework数据库提供程序”相同的错误,我没有该错误,会自动选择Framework版本,但是它将关闭。谢谢。

编辑

对于遇到此问题的人,我有一种解决方法,我必须从安装程序中卸载Net Connector,然后分别下载Net Connector 6.10.8,然后一切正常。