I have a client application that downloads a number of STE's via WCF.

Using a WPF application, users can select an entity from a ListBox, and edit it via a popup UserControl. As the UserControl is bound directly to the object, when a user makes a change it of course affects the object.

I would like to provide a Cancel function which will undo all changes made to the entity.

Any thoughts?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 3 down vote accepted

You can keep a original copy of the entity. And edit a cloned version of it.
If the user cancels the changes you simply keep using the original copy.

link|improve this answer
This is the way I follow as well. And it's probably the only option. Because a STE doesn't keep track of all original values (as normal EF entities do) which you else could set back. Only the primary / foreign key properties are tracked in the original values dictionary (of the ChangeTracker) – YoupTube Jul 8 '11 at 21:20
So when I want to save the new changes, simply persisting the cloned object back up the wire will work? – Mortick Jul 8 '11 at 22:11
1  
Yes. That will work. Clone the entity. Keep the original or the clone as a backup (doesn't matter real much) when the user edits the entity, the changetracker will do it's work (commonly in a databinding scenario) and you can send the cloned entity over the wire to be persisted through an objectcontext (.ApplyChanges; .SaveChanges). When the users cancel it's action you go on using the backup of the entity you cloned before editing operations where taking place. – YoupTube Jul 9 '11 at 8:19
feedback

http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/c12bd8c8-231f-4dcc-a665-b048f7debbd7/

link|improve this answer
That's a better approach if you are using EF. – Tocco Jul 8 '11 at 21:18
feedback

I would say as you use WPF just in binded PropertyChanged event save a Dictionary with key PropertyName and value PropertyValue. And after restore the state by using reflection

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.