Entity Framework Change Tracking API and reference entries

非 Y 不嫁゛ 提交于 2019-12-07 01:36:55

问题


Looking to write generic Audit code on my DbContext subclass.

foreach (var entry in this.ChangeTracker.Entries<MyClass>())
{
    if (entry.State == EntityState.Modified)
    {
        var entityProperties = entry.Entity.GetType().GetProperties();
        foreach (var entityProperty in entityProperties)
        {
            DbMemberEntry propertyEntry = entry.Member(property.Name);
            if (propertyEntry is DbPropertyEntry)
            {
                // IsModified available
            }
            else if (propertyEntry is DbReferenceEntry)
            {
                // IsModified not available
            }
        }
    }
}

1) If I only change a reference property, the entry.State value is "Unchanged".

2) Even if point 1 was set to "Modified", the DbReferenceEntry class doesn't seem to have an IsModified property, nor an original value.

I assume this is possible because EF must be tracking this.

Can anyone help?

Thanks, Ben


回答1:


Yes reference entry (navigation property) does not track changes. It is responsibility of foreign key property (in case of foreign key association) or separate object tracking changes of independent association. In ObjectContext API you can get these objects by ObjectStateManager but it looks like DbContext API doesn't have this available. I asked a question about this on MSDN Forum.



来源:https://stackoverflow.com/questions/5331936/entity-framework-change-tracking-api-and-reference-entries

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!