0

存在一种方法来检测一个对象图中的变化,并将其与另一个对象图进行比较。

例如:

usersSourceGraph = ObjectContext.Users.Where("bla bla bla");
userGraph = GetUsersGraph() // come from another tier and detached from ObjectContext.

与 usersSourceGraph 相比,我需要在 (Modified,New) 中设置 userGraph 状态的方法。

4

1 回答 1

2

您必须手动进行。EF 不支持合并两个对象图。

于 2012-04-25T12:21:33.767 回答