LexWells.Infrastructure/LexWells.Infrastructure.Ent.../LexWellsDbContext.cs

14 lines
413 B
C#

using Microsoft.EntityFrameworkCore;
namespace LexWells.Infrastructure.EntityFramework;
public abstract class LexWellsDbContext(DbContextOptions options) : DbContext(options)
{
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.AddInterceptors(new UpdateAuditableEntitiesInterceptor());
base.OnConfiguring(optionsBuilder);
}
}