- You can simply subscribe to the PropertyChanged event of an entity to be notified when the value of one of its scalar properties is changed.
- You can subscribe to the PropertyChanged event on the collection property; e.g.,
aCustomer.Orders.PropertyChanged += new PropertyChangedEventHandler(Orders_PropertyChanged); |
It will report changes in the list's Count and Items[] properties when an item is added to the collection.