Does anyone know if the new EntityFrameworkCore provider works with the full .NET Framework?
Are there instructions somewhere on how to get it to work?
I added the NuGet package to a .NET 4.6.2 project. I can see that there is what appears to be a UseMySQL() extension method in MySQLDbContextOptionsExtension, but, it's not coming up, at least with intellisense. I included the following using which I thought would bring the extension method in that I need to use.
using MySql.Data.EntityFrameworkCore;
It would be great if there was example code somewhere that shows what usings you need etc..
Are there instructions somewhere on how to get it to work?
I added the NuGet package to a .NET 4.6.2 project. I can see that there is what appears to be a UseMySQL() extension method in MySQLDbContextOptionsExtension, but, it's not coming up, at least with intellisense. I included the following using which I thought would bring the extension method in that I need to use.
using MySql.Data.EntityFrameworkCore;
It would be great if there was example code somewhere that shows what usings you need etc..