using Microsoft.EntityFrameworkCore; using iknow_api.Models; namespace iknow_api.Data { public class AppDbContext : DbContext { public AppDbContext(DbContextOptions options) : base(options) { } public DbSet User { get; set; } public DbSet ContactInfo { get; set; } public DbSet HighSchool { get; set; } public DbSet EnrollmentInfo { get; set; } } }