I have an interesting scenerio where an entity goes from the client, up to the server, is modified there (and saved to the database) and then comes back to the client.
The issue is that on the client, I now have two nearly identical entities; they are out of synch. The first entity is in use, so I can't just remove it and replace it with the new instance. The only solution I have come up with is to manually synch the changed properties, but I was wondering if there was any other guidance.
Greg