using Microsoft.EntityFrameworkCore; using SharedData.Models; namespace WebAPI.Data { public class ApplicationDbContext : DbContext { public DbSet GameResults { get; set; } public DbSet Books { get; set; } public DbSet Reviews { get; set; } public ApplicationDbContext(DbContextOptions options) : base(options) { } } }