using DeepDrftModels.Entities; using DeepDrftWeb.Data.Configurations; using Microsoft.EntityFrameworkCore; namespace DeepDrftWeb.Data; public class DeepDrftContext : DbContext { public DeepDrftContext(DbContextOptions options) : base(options) { } public DbSet Tracks { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.ApplyConfiguration(new TrackConfiguration()); } }