using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace Trazo.Model; public class ApplicationDbContext(DbContextOptions options) : IdentityDbContext, Guid>(options) { protected override void OnModelCreating(ModelBuilder builder) { base.OnModelCreating(builder); builder.Entity(); builder.HasDefaultSchema("identity"); } }