Click here to Skip to main content
15,881,882 members
Articles / Entity Framework
Reference

Versions of MySQL Entity Framework library compatible with .NET Core

Rate me:
Please Sign up or sign in to vote.
1.29/5 (6 votes)
18 Jul 2018CPOL 4.6K   3  
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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --