I have a GridView bound to an EntityDataSource. Automatic Updates/Inserts/Deletes are enabled, and these operations function correctly.
However, I'd like to make multiple edits before commiting anything to the database. (vs. committing each row as soon as the Update button is clicked.) When the user finally clicks a Save button, all the page's edits shall be committed.
e.g. myEntityModel.SaveChanges();
This link says to copy the data to a new table and bind the GridView to that. Would that be the recommended approach for Entity Framework (4.0), or is there a better way?
Thanks!