Hi all, I have a datagrid that is bound to a observableCollection of Employees The user is allowed to do in line editing by double clicking the datagridRow. When binding the property in question I also use UpdateSourceTrigger.
When I user presses the save button ,the saveCommand is triggered in my MVVM and I want to create a list of only the employees that I have had property modified.
All my ViewModels implements INotifyPropertyChanged.
Despite lots of links on google I cannot seem to find an example that takes you through or explain how to track the items that have changed in a observablecollection.
Can you help?