I am using self-tracking entities from across a WCF Layer to bind a datagridview on a Windows forms application. All working fine.
My problem is that when I am editing a cell, the moment I move out (cellendedit) the row shows clean. There is this small icon that shows the row to be dirty when you are editing, and should continue to show so until you save the data.
Basically I lose my changes the dirty state the moment I move out of the cell. Now I can actually manually get the changes to be updated by creating a list of updated objects and the updating them in a loop. However, I want to know if there is a cleaner approach that allows a batch update that comes out of the box in EF.
Do let me know.