using Liber_Incantamentum.Domain.Entities; using Microsoft.EntityFrameworkCore; namespace Liber_Incantamentum.Infrastructure.Persistence { public class AppDbContext : DbContext { public AppDbContext(DbContextOptions options) : base(options) { } public DbSet Mages { get; set; } public DbSet Spells { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.ApplyConfigurationsFromAssembly(typeof(AppDbContext).Assembly); base.OnModelCreating(modelBuilder); } } }