在EF6中,此方法可用于检索实体的导航属性:
private List<PropertyInfo> GetNavigationProperties<T>(DbContext context) where T : class
{
var entityType = typeof(T);
var elementType = ((IObjectContextAdapter)context).ObjectContext.CreateObjectSet<T>().EntitySet.ElementType;
return elementType.NavigationProperties.Select(property => entityType.GetProperty(property.Name)).ToList();
}
然而, IObjectContextAdapter
在EF Core中不存在。我应该在哪里获取实体的导航属性列表?
答案 0 :(得分:5)
幸运的是,在Entity Framework核心中访问模型数据变得更加容易。这是一种列出实体类型名称及其导航属性信息的方法:
using Microsoft.EntityFrameworkCore;
...
var modelData = db.Model.GetEntityTypes()
.Select(t => new
{
t.ClrType.Name,
NavigationProperties = t.GetNavigations().Select(x => x.PropertyInfo)
});
...其中db
是一个上下文实例。
您可能希望使用重载GetEntityTypes(typeof(T))
。