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