I am using the Adapter template in a remoting scenario where the remote type does the CRUD. The presentation tier client will be web forms. One of the forms allows the end user to edit both one parent object and many related child objects.
Suppose there are 20 child objects and only one is updated (or added or deleted). Upon postback, is there a convenient way to send only the changed objects in the object graph to the remote save method? e.g., in the preceding example, the parent object (required to be sent cause it's the root of the graph) along with one child object would be sent over the wire.
Thanks in advance for any help.