17 lines
556 B
C#
17 lines
556 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using xModels.Base;
|
|
|
|
namespace xDataService.Providers
|
|
{
|
|
/// <summary>
|
|
/// Configure an Entity Specifications ...
|
|
/// </summary>
|
|
/// <typeparam name="TEntity"></typeparam>
|
|
/// <typeparam name="TKey"></typeparam>
|
|
public abstract class XBaseEntityTypeConfiguration<TEntity, TKey> : IEntityTypeConfiguration<TEntity>
|
|
where TEntity : XBaseEntity<TKey>
|
|
{
|
|
public abstract void Configure(EntityTypeBuilder<TEntity> builder);
|
|
}
|
|
} |