有没有办法区分Entity-Framework类(Database-First)上的常规集合属性和导航属性?
我目前正在检查对象is ICollection
和IsVirtual
,但我觉得这可能触发某人已声明为虚拟集合的常规属性。
问题:还有其他方法可以将导航属性与其他属性区分开来吗?
上下文:我使用它来比较任何对象的值,但我希望它忽略导航属性(忽略其他内容的循环引用)。
foreach (var item in (IEnumerable)obj)
{
list2.MoveNext();
var item2 = list2.Current;
foreach (PropertyInfo propInfo in item.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance))
{
Object v1 = propInfo.GetValue(item);
Object v2 = propInfo.GetValue(item2);
Primitive = (v1 == null && v2 == null) || IsPrimitive(v1.GetType());
if (Primitive)
{
Assert.AreEqual(v1, v2);
}
else
{
// Ignore Navigation Properties
// Currently assuming Virtual properties to be Navigation...
if (propInfo.GetGetMethod().IsVirtual) continue;
CompareObjects(v1, v2);
}
}
}
答案 0 :(得分:3)
好吧,如果你想知道导航属性的名称和与实体相关的标量属性,我建议你使用这段代码:
using (var db=new YourContext())
{
var workspace = ((IObjectContextAdapter)db).ObjectContext.MetadataWorkspace;
var itemCollection = (ObjectItemCollection)(workspace.GetItemCollection(DataSpace.OSpace));
var entityType = itemCollection.OfType<EntityType>().Single(e => itemCollection.GetClrType(e) == typeof(YourEntity));
foreach (var navigationProperty in entityType.NavigationProperties)
{
Console.WriteLine(navigationProperty.Name);
}
foreach (var property in entityType.Properties)
{
Console.WriteLine(property.Name);
}
}
答案 1 :(得分:0)
使用GetProperties()时的一个解决方案是创建IEntity接口并将其应用于所有实体。然后,您可以通过检查它们是否实现IEntity和多个实体导航来跳过单个实体导航属性 如果它们属于ICollection类型。
所以在你的foreach中,
if (property.PropertyType.IsGenericType && property.PropertyType.GetGenericTypeDefinition() == typeof(System.Collections.Generic.ICollection<>)) continue;
if (property.PropertyType.GetInterfaces().Contains(typeof(IEntity))) continue;
以下是使用此逻辑仅返回可更新属性的简单方法:
private IEnumerable<PropertyInfo> GetUpdateableProperties<T>(T entity) where T : IEntity
{
return entity.GetType().GetProperties(BindingFlags.GetProperty | BindingFlags.Public | BindingFlags.Instance | BindingFlags.SetProperty)
.Where(property =>
property.CanWrite &&
!property.PropertyType.GetInterfaces().Contains(typeof(IEntity)) &&
!(property.PropertyType.IsGenericType && property.PropertyType.GetGenericTypeDefinition() == typeof(ICollection<>))
);
}