using Microsoft.EntityFrameworkCore; namespace SampleApplication { public class SampleDbContext : DbContext { public SampleDbContext(DbContextOptions options) : base(options) { } public DbSet Shapes { get; set; } } }