using AyCode.Interfaces.Entities; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; namespace AyCode.Database.DbSets; public class AcDbTableBase : DbSet, IAcDbTableBase where TEntity : class, IEntity { public override IEntityType EntityType { get; } = null!; } public interface IAcDbTableBase { }