using fxl.codes.kisekae.data.Entities; using Microsoft.EntityFrameworkCore; namespace fxl.codes.kisekae.data; public class KisekaeContext(DbContextOptions options) : DbContext(options) { public DbSet KisekaeSets { get; init; } public DbSet Configurations { get; init; } public DbSet Cels { get; init; } public DbSet CelConfigs { get; init; } public DbSet Renders { get; init; } public DbSet Palettes { get; init; } public DbSet PaletteColors { get; init; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().Ignore(x => x.Sets); base.OnModelCreating(modelBuilder); } }