标签: entity-framework
是否存在检测一个对象图中的变化的方法,将其与另一个对象图进行比较。
例如:
usersSourceGraph = ObjectContext.Users.Where("bla bla bla"); userGraph = GetUsersGraph() // come from another tier and detached from ObjectContext.
与usersSourceGraph相比,我需要在(Modified,New)中设置userGraph状态。
答案 0 :(得分:2)
你必须这样做manually。 EF中没有支持合并两个对象图。