implement INotifyCollectionChanged on System.Data.Linq.EntitySet<T>
Because EntitySet<T> doesnt implement INotifyCollectionChanged, LINQ-to-SQL is unable to notify WPF of any additions/removals. The results are that binding any data returned from LINQ-to-SQL cannot have any children added or removed visually.
19
votes