65.9K
CodeProject is changing. Read more.
Home

Versions of MySQL Entity Framework library compatible with .NET Core

starIcon
emptyStarIcon
starIcon
emptyStarIconemptyStarIconemptyStarIcon

1.29/5 (6 votes)

Feb 21, 2018

CPOL
viewsIcon

4852

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.