15 lines
362 B
C#
15 lines
362 B
C#
using AyCode.Interfaces.Entities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
|
|
namespace AyCode.Database.DbSets;
|
|
|
|
public class AcDbTableBase<TEntity> : DbSet<TEntity>, IAcDbTableBase where TEntity : class, IEntity
|
|
{
|
|
public override IEntityType EntityType { get; } = null!;
|
|
}
|
|
|
|
public interface IAcDbTableBase
|
|
{
|
|
|
|
} |