Why does ObservableCollection not support bulk changes?

15,523

Solution 1

I don't think it's that there are any potential downsides or problems, it's just that it isn't there. In fact, you will find that most types in 'System.Collections.Generic' don't supply 'AddRange' functionality either.

Meanwhile, lots of people have created their own versions of 'ObservableCollection' to provide the functionality that you want. INotifyCollectionChanged contains enough information for its handlers to make note of when a range of items have been affected probably for this reason.

Last but not least, if you bind a collection that has these 'Range' type operations you will find that they will work with your UI as you expect

Solution 2

There are numerous extensions to ObservableCollection that can be found on the internet that add the concept of add / remove range, or allow you to defer updates and fire them manually. For example see this Stack Overflow question:

ObservableCollection Doesn't support AddRange method, so I get notified for each item added, besides what about INotifyCollectionChanging?

You can also implement a bulk add that fires a reset event, which will cause the UI to re-render all of the items in the collection:

http://peteohanlon.wordpress.com/2008/10/22/bulk-loading-in-observablecollection/

These allow you to more efficiently manage the UI updates. How an ItemsControl handles a collection changed event which details a list of changed items is up to the WPF framework itself. I am assuming it handles this intelligently!

My advice to you is, if performance is critical to you and you have collections with numerous items being updated and are experiencing performance problem, then subclass ObservableCollection to manage collection changed notification in a manner that best fits your application's needs.

Solution 3

NotifyCollectionChangedEventArgs includes index information. Removing items causes indexes to reshuffle, as does inserting items. Hence, whilst not entirely impossible, it would be rather difficult and probably inefficient to provide the ability to work with ranges.

Solution 4

There must be a reason why Microsoft didn't provide them

They do not provide every possible piece of functionality, it's (also) a cost vs. demand thing.

You could implement your own collection that supports bulk operations and implements INotifyCollectionChanged.

Yes. And when you do, you'll find that the collection will have to make choices about how/when to propagate those changes. I never tried but I imagine there are some trade-offs that the View or ViewModel can make better decisions about than a reusable collection.

Share:
15,523
DanT
Author by

DanT

Updated on June 06, 2022

Comments

  • DanT
    DanT about 2 years

    What are the potential problems caused by an ObservableCollection supporting operations like AddRange or RemoveRange? There must be a reason why Microsoft didn't provide them, now that ObservableCollection is so frequently used with WPF.

    You could implement your own collection that supports bulk operations and implements INotifyCollectionChanged. What happens if I bind such a control to an ItemsControl?

    Does anyone know of ItemsControls that don't support bulk changes?