public void ConfigureServices(IServiceCollection services) { services.AddDbContext<WebAPIDataContext>(options => { options.UseMySQL("CONNECTION STRING"); }); services.AddMvc(); }这段代码中的
public void ConfigureServices(IServiceCollection services) { services.AddDbContext<WebAPIDataContext>(options => { options.UseMySQL("CONNECTION STRING"); }); services.AddMvc(); }
options.UseMySQL 是引用哪个库?