Is exists way to detect changes in one object graph comparing it this another object graph.
For example:
usersSourceGraph = ObjectContext.Users.Where("bla bla bla");
userGraph = GetUsersGraph() // come from another tier and detached from ObjectContext.
I need way of setting userGraph states in (Modified,New) comparing with usersSourceGraph.