using Microsoft.EntityFrameworkCore; using PLib.Domain.Videos; namespace PLib.Infrastructure.Persistence; public sealed class LibraryDbContext(DbContextOptions options) : DbContext(options) { public DbSet Videos => Set(); protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.ApplyConfigurationsFromAssembly(typeof(LibraryDbContext).Assembly); base.OnModelCreating(modelBuilder); } }