namespace Groceries.Data; using Microsoft.EntityFrameworkCore; public class AppDbContext : DbContext { public AppDbContext(DbContextOptions options) : base(options) { } public DbSet Items => Set(); public DbSet ItemPurchases => Set(); public DbSet ItemTagQuantities => Set(); public DbSet Lists => Set(); public DbSet Retailers => Set(); public DbSet Stores => Set(); public DbSet Transactions => Set(); public DbSet TransactionTotals => Set(); protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity(entity => { entity.Property(e => e.UpdatedAt) .HasDefaultValueSql(); }); modelBuilder.Entity(entity => { entity.ToTable("item_barcodes"); entity.HasKey(e => new { e.ItemId, e.BarcodeData }); entity.Property(e => e.Format) .HasDefaultValueSql(); }); modelBuilder.Entity(entity => { entity.HasNoKey(); entity.ToView("item_purchases"); }); modelBuilder.Entity(entity => { entity.HasNoKey(); }); modelBuilder.Entity(entity => { entity.Property(e => e.UpdatedAt) .HasDefaultValueSql(); entity.OwnsMany(entity => entity.Items, entity => { entity.ToTable("list_items"); }); }); modelBuilder.Entity(entity => { entity.Property(e => e.CreatedAt) .HasDefaultValueSql(); entity.OwnsMany(e => e.Items, entity => { entity.ToTable("transaction_items"); entity.HasKey(e => new { e.TransactionId, e.ItemId }); entity.Property(e => e.Price) .HasPrecision(5, 2); }); }); modelBuilder.Entity(entity => { entity.ToTable("transaction_promotions"); entity.Property(e => e.Amount) .HasPrecision(5, 2); entity.HasMany(e => e.Items) .WithMany(e => e.TransactionPromotions) .UsingEntity(); }); modelBuilder.Entity(entity => { entity.HasNoKey(); entity.ToView("transaction_totals"); }); foreach (var entity in modelBuilder.Model.GetEntityTypes()) { var idProperty = entity.FindProperty("Id"); if (idProperty != null) { idProperty.SetColumnName($"{entity.ClrType.Name.ToLowerInvariant()}_id"); idProperty.SetDefaultValueSql(string.Empty); } } } }