We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1efe5f commit 5150e7bCopy full SHA for 5150e7b
MySqlDotnetCore/Startup.cs
@@ -28,7 +28,7 @@ public Startup(IConfiguration configuration)
28
public void ConfigureServices(IServiceCollection services)
29
{
30
services.AddDbContext<ApplicationDbContext>(options =>
31
- options.UseSqlServer(
+ options.UseMySQL(
32
Configuration.GetConnectionString("DefaultConnection")));
33
services.AddDefaultIdentity<IdentityUser>(options => options.SignIn.RequireConfirmedAccount = true)
34
.AddEntityFrameworkStores<ApplicationDbContext>();
0 commit comments