Reputation: 3118
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
Reputation: 25019
All these MySQL data providers depend on .NET Standard 1.3
:
Pomelo.EntityFrameworkCore.MySql
Upvotes: 2