इसके लिए एक पुस्तकालय है:https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore। माईएसक्ल
सेटअप चरण:
-
Donwload
Pomelo.EntityFrameworkCore.MySql
नुगेट से। -
इसका उपयोग करके अपनी कक्षा में जोड़ें:
using Pomelo.EntityFrameworkCore.MySql.Infrastructure;
-
इसे अपने
ConfigureServices
. में जोड़ें विधि: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); } ));