Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Versions of MySQL Entity Framework library compatible with .NET Core

0.00/5 (No votes)
18 Jul 2018 1  
I’ve found it usually tricky to reference the right version of entity framework to the application’s .NET Core version.

Introduction

I’m a frequent user of entity framework to connect MySQL with my .NET projects.

I’ve found it usually tricky to refer the right version of entity framework to the application’s .NET Core version.

Using the code

I summary here some combinations I’ve found:

* .NET Core 2.0 

    Mysql.data: 6.10.4
    MySql.Data.EntityFrameworkCore: 6.10.4

    or

    Mysql.data: 8.0.11
    MySql.Data.EntityFrameworkCore: 8.0.11

 
* .NET Core 1.0

    MySql.Data.Core: 7.0.4-IR-191
    MySql.Data.EntityFrameworkCore: 7.0.4-IR-191

    or

    MySql.Data: 7.0.5-IR21
    MySql.Data.EntityFrameworkCore: 7.0.5-IR21
 

Points of Interest

This list is open to other contributions. 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here