[Entity Framework] MySQL @ Entity Framework 6

[Entity Framework] MySQL @ Entity Framework 6

要讓 MySQL 能夠用 EF6,我花了一點時間,在此記錄一下

安裝元件

在設定檔加入Provider


安裝元件

從 NuGet 安裝 MySql.Data.Entities

image

 

完成後,就會看到相關元件已經被加入到專案裡

image

 

接下來加入 MySQL 的 Model

image

image

image

image

 

無法使用EF6

image


在設定檔加入Provider

這時需要在 App.config/Web.Config加入以下 Provider,然後按下存檔



  

 

完整設定檔如下:


<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>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  </startup>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="v11.0" />
      </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.Entity.EF6"></provider>
    </providers>
  </entityFramework>
</configuration>

 

這時候就可以加入MySQL Model

image

詳細請參考
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework60.html
 


 

文章出自:http://www.dotblogs.com.tw/yc421206/archive/2014/03/14/144395.aspx

若有謬誤,煩請告知,新手發帖請多包涵


Microsoft MVP Award 2010~2017 C# 第四季
Microsoft MVP Award 2018~2022 .NET

Image result for microsoft+mvp+logo