EntitySet is a sealed class that doesn't implement INotifyCollectionChanged. Is there an easy way to get add/remove notifications to WPF when binding to an EntitySet contained inside an object? My binding is as follows: ItemsSource ="{Binding Source={StaticResource PageData}, Path=questions, Mode=TwoWay}" where "questions" is the path to an EntitySet. Thanks for any pointers.
Read More...