yitzih
yitzih

Reputation: 3118

Querying MySQL DB with .NET Standard 1.4 or 1.5

I am trying to create a single library that can be used by a WPF project and a .NET Core project.

I need to connect to a MySQL database. MySQL.Data requires .NET Standard 1.6, but there is no .NET Framework for .NET Standard 1.6 (4.6.2 only uses 1.5).

What are the options for connecting to a MySQL database using .NET Standard 1.5?(until .NET Standard 2.0 comes out and can be used with 4.6.1)

Upvotes: 0

Views: 710

Answers (1)

Ilya Chumakov
Ilya Chumakov

Reputation: 25019

All these MySQL data providers depend on .NET Standard 1.3:

MySqlConnector

Pomelo.Data.MySql

Pomelo.EntityFrameworkCore.MySql

Upvotes: 2

Related Questions