UseMySQL extension method not recognized in ASP.NET core

Add the using MySql.Data.EntityFrameworkCore.Extensions; statement.


I've successfully used this in my Mac with the latest version of VS Community in to an ASP CORE MVC project and I just needed to add the following NuGet-Packages:

Microsoft.EntityFrameworkCore  
MySql.Data.EntityFrameworkCore

Then using them on your class like:

using Microsoft.EntityFrameworkCore;
using MySQL.Data.EntityFrameworkCore.Extensions;

Notice the MySQL on the USING statement is CAPITAL letter, and it is MySql on the NuGet Package name. Hope this hel