using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using FinkiChattery.Identity.Models; namespace FinkiChattery.Identity.Data { public class ApplicationDbContext : IdentityDbContext where TUser : ApplicationUser { public ApplicationDbContext(DbContextOptions> options) : base(options) { } protected override void OnModelCreating(ModelBuilder builder) { base.OnModelCreating(builder); } } }