mh_frame_sps/APT.Infrastructure.EF/Infrastructure/IEntityScaner.cs
2026-04-07 13:47:52 +08:00

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);
}
}