using Microsoft.EntityFrameworkCore; namespace GSS2.Core.Analysis.AmineContent.Database; public class Context : DbContext { public DbSet BrandRecords => Set(); public DbSet FeatureRecords => Set(); public DbSet ImageRecords => Set(); // public DbSet ResultRecords => Set(); public DbSet SeparatorRecords => Set(); public DbSet SampleRecords => Set(); public Context(DbContextOptions options) : base(options) { } }