- using Infrastructure.Persistence.Identity;
- using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore;
- namespace Infrastructure.Persistence
- {
- public sealed class IdentityDbContext : IdentityDbContext<ApplicationUser>
- {
- public IdentityDbContext(DbContextOptions<IdentityDbContext> options) : base(options) { }
- protected override void OnModelCreating(ModelBuilder modelBuilder)
- {
- base.OnModelCreating(modelBuilder);
- }
- }
- }
|