using System; using System.Collections.Generic; using System.Text; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using MultipleChoiceTrainer.Models.DataModels; namespace MultipleChoiceTrainer.Data { public class ApplicationDbContext : IdentityDbContext { public ApplicationDbContext(DbContextOptions options) : base(options) { } public DbSet Categories { get; set; } public DbSet
Sections { get; set; } public DbSetQuestions { get; set; } public DbSet Choices { get; set; } public DbSet Answers { get; set; } } }