Existuje na to knihovna:https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore. MySql
Kroky nastavení:
-
Stáhněte si
Pomelo.EntityFrameworkCore.MySql
z NuGet. -
Přidejte toto použití do vaší třídy:
using Pomelo.EntityFrameworkCore.MySql.Infrastructure;
-
Přidejte to do svých
ConfigureServices
metoda: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); } ));