using Microsoft.EntityFrameworkCore; namespace Nevyn.Models { public class ShoppingContext : DbContext { public ShoppingContext(DbContextOptions options) : base(options) { } public DbSet UpdateShopping { get; set; } = null!; } }