using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using SharedData.Models; namespace RankingApp_WebAPI.Data { public class ApplicationDbContext : IdentityDbContext { public DbSet GameResults { get; set; } public ApplicationDbContext(DbContextOptions options) : base(options) { } } }