【发布时间】:2016-11-11 08:19:44
【问题描述】:
大家好,我有以下课程:
public class EntityA
{
public Guid Id { get; set; }
public string Desc { get; set; }
public EntityB EntityB { get; set; }
}
public class EntityB
{
public Guid Id { get; set; }
public Guid EntityAId { get; set; }
public EntityA EntityA { get; set; }
}
我有以下运行时代码:
var a1 = new EntityA {Desc = "a1"};
var a2 = new EntityA {Desc = "a2"};
dbx.EntityAs.Add(a1);
dbx.EntityAs.Add(a2);
var b1 = new EntityB { EntityAId = a1.Id };
dbx.EntityBs.Add(b1);
dbx.SaveChanges();
b1.EntityAId = a2.Id;
dbx.SaveChanges();
我在我的 DbContext.SaveChanges() 方法中修改了如下代码,试图找出实体中的哪个属性发生了变化以及它的前后值:
foreach (var entity in changedEntites)
{
var entityType = entity.Entity.GetType();
if (entity.State == EntityState.Modified)
{
var properties = entityType.GetProperties();
var props = new List<object>();
foreach (var prop in properties)
{
if(entityType.GetProperty(prop.Name) == null)
continue;
var pp = entityType.GetProperty(prop.Name);
if(pp.GetValue(entity.Entity) == null)
continue;
var p = entity.Property(prop.Name);
if (p.IsModified)
props.Add(new { f = prop.Name, o = p.OriginalValue, c = p.CurrentValue });
}
}
}
有问题的代码在这一行:
var p = entity.Property(prop.Name);
它抛出InvalidOperationException:
The property 'EntityA' on entity type 'EntityB' could not be found.
Ensure that the property exists and has been included in the model.
我的问题是为什么即使entityType.GetProperty(prop.Name) 和entityType.GetProperty(prop.Name).GetValue(entity.Entity) 不为空,entity.Property() 仍然无法找到该属性?
我可以用 try-catch 块包围var p = entity.Property(prop.Name); 并忽略异常,但是让异常在审计场景中不断抛出并不是一件好事。它也会对性能产生影响。
非常感谢任何解决方法。谢谢
【问题讨论】:
标签: c# entity-framework asp.net-core entity-framework-core .net-core