15 lines
374 B
C#
15 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace APT.Infrastructure.EF
|
|
{
|
|
public interface IEntityScaner<out TDbContext>
|
|
where TDbContext: DbContext
|
|
{
|
|
IList<DbsetProperty> ScanEntityTypes();
|
|
|
|
// IList<EntityTypeBuilder> ScanEntities(IList<Type> types, ModelBuilder modelBuilder);
|
|
}
|
|
}
|