I have a observable collection of viewmodel objects. How can I subscribe to the Property Changed event of each view model in my collection as they are created and track which ones have been changed, so that I can updated them to my database.
Share
I believe that the code below serves as an example of how to solve your problem. In this example MyCollection is a property ViewModel objects. ViewModel implements the INotifyPropertyChanged interface.