Det finns ett bibliotek för detta:https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore. MySql
Installationssteg:
-
Ladda ner
Pomelo.EntityFrameworkCore.MySql
från NuGet. -
Lägg till detta med hjälp av till din klass:
using Pomelo.EntityFrameworkCore.MySql.Infrastructure;
-
Lägg till detta i dina
ConfigureServices
metod:services.AddDbContextPool<ApplicationDbContext>( options => options.UseMySql("Server=localhost;Database=ef;User=root;Password=123456;", mySqlOptions => { mySqlOptions.ServerVersion(new Version(5, 7, 17), ServerType.MySql) .EnableRetryOnFailure( maxRetryCount: 10, maxRetryDelay: TimeSpan.FromSeconds(30), errorNumbersToAdd: null); } ));