使用ChangeInterceptor检查实体之间的“关系”变化/突变

时间:2011-10-27 17:51:17

标签: wcf entity-framework entity-framework-4 entity-framework-4.1

有没有办法看到一个实体的关系如何在ChangeInterceptor()中受到影响/改变?以下是使用NorthWind数据库的示例,当您从员工实体中删除/删除订单实体时,其中关系是一对多,一个员工有多个订单,如何检测订单已从员工实体中删除。我知道使用ObjectStateEntry类可以调用GetModifiedProperties()来查看属性发生了哪些变化,但是我们如何看到集合/关联变化了什么?它与RelationshipManager有关吗?

[ChangeInterceptor("Employees"]
public void OnChangeEmployees(Employee employee, UpdateOperations operations)
{
    //I'm using EntityFramework 4.1
    //We have to dropdown the ObjectContext to detect IA, Independant Association, changes
    ObjectContext ctx = ((IObjectContextAdapter)this.CurrentDataSource).ObjectContext;

    ObjectStateEntry entry = ctx.ObjectStateManager.GetObjectStateEntry(employee);

    //What do I do here for detecting relationship changes.. I.E and Order was added?


} 

提前致谢。

1 个答案:

答案 0 :(得分:0)

而不是使用ChangeInterceptor ......只需在ObjectContext上实现SavingChanges事件处理程序。这个article解释了如何查看实体的关系是否受到影响。