Update README.md with project details, features, requirements, architecture, and data management for PLib video library manager.

This commit is contained in:
Leonid Pershin
2026-08-08 07:08:43 +03:00
parent e767e4a48c
commit ac05ea6b7f
59 changed files with 3010 additions and 0 deletions
@@ -0,0 +1,15 @@
using Microsoft.EntityFrameworkCore;
using PLib.Domain.Videos;
namespace PLib.Infrastructure.Persistence;
public sealed class LibraryDbContext(DbContextOptions<LibraryDbContext> options) : DbContext(options)
{
public DbSet<VideoItem> Videos => Set<VideoItem>();
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.ApplyConfigurationsFromAssembly(typeof(LibraryDbContext).Assembly);
base.OnModelCreating(modelBuilder);
}
}