using Microsoft.EntityFrameworkCore; using SurveyLib.Core.Models; namespace SurveyLib.Infrastructure.EFCore.Data; public class DataContext : DbContext { public DbSet Surveys { get; set; } public DbSet Questions { get; set; } public DbSet Completions { get; set; } public DbSet Answers { get; set; } public DataContext(DbContextOptions options) : base(options) { Database.EnsureCreated(); } }