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.