using EmailApi.Data.Entities; using Microsoft.EntityFrameworkCore; namespace EmailApi.Data; public sealed class EmailApiDbContext : DbContext { public const string SchemaName = "emailApi"; public const string MigrationTableName = "_Migrations"; public EmailApiDbContext(DbContextOptions options) : base(options) { } public DbSet EmailTemplates => Set(); protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { base.OnConfiguring(optionsBuilder); // Configure migration history table to use schema-qualified name: [emailApi].[_Migrations] optionsBuilder.UseSqlServer(x => x.MigrationsHistoryTable(MigrationTableName, SchemaName)); } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.HasDefaultSchema(SchemaName); modelBuilder.Entity(entity => { entity.ToTable("EmailTemplates"); entity.HasKey(x => new { x.Key, x.Language }); entity.Property(x => x.Key).HasMaxLength(128); entity.Property(x => x.Language).HasMaxLength(8); entity.Property(x => x.Value).IsRequired(); entity.Property(x => x.Description).HasMaxLength(500).HasDefaultValue(string.Empty); entity.Property(x => x.UpdatedAt).HasDefaultValueSql("SYSUTCDATETIME()"); entity.Property(x => x.OperatorCopy).HasMaxLength(256).HasDefaultValue(string.Empty); }); } }