Last active
July 3, 2021 12:02
-
-
Save imclint21/1f2c1e7435c583da8805e842bc21ec57 to your computer and use it in GitHub Desktop.
Install Identity with EntityFramework in .Net 5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ApplicationDbContext : IdentityDbContext<ApplicationUser> | |
{ | |
// public DbSet<Model> Model { get; set; } | |
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> dbContextOptions) : base(dbContextOptions) | |
{ | |
} | |
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) | |
{ | |
base.OnConfiguring(optionsBuilder); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Logging": { | |
"LogLevel": { | |
"Default": "Information", | |
"Microsoft": "Warning", | |
"Microsoft.Hosting.Lifetime": "Information" | |
} | |
}, | |
"ConnectionStrings": { | |
"DefaultConnection": "Server=localhost,1433; Database=test1; User=sa; Password=l8V3dLsEC5g6YOK19WArS24ap4nUda1c;" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="5.0.7" /> | |
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.7" /> | |
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.7" /> | |
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.7" /> | |
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.7"> | |
<PrivateAssets>all</PrivateAssets> | |
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | |
</PackageReference> | |
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.7" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services.AddDbContext<ApplicationDbContext>(options => options.UseSqlServer(_configuration.GetConnectionString("DefaultConnection"))); | |
services.AddDatabaseDeveloperPageExceptionFilter(); | |
services.AddDefaultIdentity<ApplicationUser>(options => options.SignIn.RequireConfirmedAccount = true) | |
.AddEntityFrameworkStores<ApplicationDbContext>(); | |
services.Configure<IdentityOptions>(options => | |
{ | |
options.Password.RequireDigit = false; | |
options.Password.RequireLowercase = true; | |
options.Password.RequireNonAlphanumeric = false; | |
options.Password.RequireUppercase = false; | |
options.Password.RequiredLength = 6; | |
options.Password.RequiredUniqueChars = 1; | |
options.Lockout.DefaultLockoutTimeSpan = TimeSpan.FromMinutes(5); | |
options.Lockout.MaxFailedAccessAttempts = 5; | |
options.Lockout.AllowedForNewUsers = true; | |
options.User.RequireUniqueEmail = true; | |
}); | |
services.ConfigureApplicationCookie(options => | |
{ | |
options.Cookie.HttpOnly = true; | |
options.ExpireTimeSpan = TimeSpan.FromMinutes(5); | |
options.LoginPath = "/account/login"; | |
options.AccessDeniedPath = "/account/login"; | |
options.SlidingExpiration = true; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment