using Microsoft.EntityFrameworkCore; using Chrono.Model; namespace Server; public class AppDbContext : DbContext { public AppDbContext(DbContextOptions options) : base(options) { } public DbSet CardNotes { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().HasKey(n => n.CardName); } }