vote up 9 vote down star
3

Was considering the System.Collections.ObjectModel ObservableCollection<T> class. This one is strange because

  • it has an Add Method which takes one item only. No AddRange or equivalent.
  • the Notification event arguments has a NewItems property, which is a IList (of objects.. not T)

My need here is to add a batch of objects to a collection and the listener also gets the batch as part of the notification. Am I missing something with ObservableCollection ? Is there another class that meets my spec?

Update: Don't want to roll my own as far as feasible. I'd have to build in add/remove/change etc.. a whole lot of stuff.


Related Q:
http://stackoverflow.com/questions/670577/observablecollection-doesnt-support-addrange-method-so-i-get-notified-for-each

flag

43% accept rate
1  
Gishu, careful, if you bind to a listview most of the implementations here will blow up. – Sam Saffron May 12 at 4:55

10 Answers

vote up 1 vote down

Inherit from List<T> and override the Add() and AddRange() methods to raise an event?

link|flag
vote up 2 vote down

If you're wanting to inherit from a collection of some sort, you're probably better off inheriting from System.Collections.ObjectModel.Collection because it provides virtual methods for override. You'll have to shadow methods off of List if you go that route.

I'm not aware of any built-in collections that provide this functionality, though I'd welcome being corrected :)

link|flag
vote up 9 vote down

It seems that the INotifyCollectionChanged interface allows for updating when multiple items were added, so I'm not sure why ObservableCollection<T> doesn't have an AddRange. You could make an extension method for AddRange, but that would cause an event for every item that is added. If that isn't acceptable you should be able to inherit from ObservableCollection<T> as follows:

public class MyObservableCollection<T> : ObservableCollection<T>
{
    // matching constructors ...

    bool isInAddRange = false;

    protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
    {
        // intercept this when it gets called inside the AddRange method.
        if (!isInAddRange) 
            base.OnCollectionChanged(e);
    }


    public void AddRange(IEnumerable<T> items)
    {
         isInAddRange = true;
         foreach (T item in items)
            Add(item);
         isInAddRange = false;

         var e = new NotifyCollectionChangedEventArgs(
             NotifyCollectionChangedAction.Add,
             items.ToList());
         base.OnCollectionChanged(e);
    }
}
link|flag
The code snippet needs some corrections.. there is no ToList() in IEnumerable and AddRange should take a ICollection<T> to be consistent... Since I had to steam-roll through this temp setback to my grand plans of meeting my weekly target, posting my code sample.. a bit shorter. – Gishu Sep 14 '08 at 18:56
1  
Gishu, the ToList() method is a LINQ extension method available on IEnumerable. – Brad Wilson Sep 14 '08 at 19:06
Got it... You need to set project settings to use .NET 3.5 and add the LINQ assembly reference and using directive to get it. – Gishu Sep 28 '08 at 12:19
vote up 0 vote down

Extension Method Man to the rescue!

    /// <summary>
	/// Adds all given items to the collection
	/// </summary>
	/// <param name="collection">The collection.</param>
	/// <param name="toAdd">Objects to add.</param>
	public static void AddAll<T>(this IList<T> collection, params T[] toAdd)
	{
		foreach (var o in toAdd)
			collection.Add(o);
	}
link|flag
This is painfully slow ... for example try adding 3000 items to an observable collection (say goodbye to the ui for 3 minutes) – Sam Saffron May 12 at 4:40
If you're bound to the UI, yeah, most likely. blogs.msdn.com/nathannesbit/archive/… – Will May 12 at 14:35
vote up 2 vote down

Not only is System.Collections.ObjectModel.Collection<T> a good bet, but in the help docs there's an example of how to override its various protected methods in order to get notification. (Scroll down to Example 2.)

link|flag
thanks - useful link... made a mental note. – Gishu Sep 14 '08 at 18:49
vote up 3 vote down

Well the idea is same as that of fryguybob - kinda weird that ObservableCollection is kinda half-done. The event args for this thing do not even use Generics.. making me use an IList (that's so.. yesterday :) Tested Snippet follows...

using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;

namespace MyNamespace
{
    public class ObservableCollectionWithBatchUpdates<T> : ObservableCollection<T>
    {
        public void AddRange(ICollection<T> obNewItems)
        {
            IList<T> obAddedItems = new List<T>();
            foreach (T obItem in obNewItems)
            {
                Items.Add(obItem);
                obAddedItems.Add(obItem);
            }
            NotifyCollectionChangedEventArgs obEvtArgs = new NotifyCollectionChangedEventArgs(
               NotifyCollectionChangedAction.Add, 
               obAddedItems as System.Collections.IList);
            base.OnCollectionChanged(obEvtArgs);
        }

    }
}
link|flag
vote up 0 vote down

If you use any of the above implementations that send an add range command and bind the observablecolletion to a listview you will get this nasty error.

NotSupportedException
   at System.Windows.Data.ListCollectionView.ValidateCollectionChangedEventArgs(NotifyCollectionChangedEventArgs e)
   at System.Windows.Data.ListCollectionView.ProcessCollectionChanged(NotifyCollectionChangedEventArgs args)
   at System.Collections.Specialized.NotifyCollectionChangedEventHandler.Invoke(Object sender, NotifyCollectionChangedEventArgs e)
   at System.Collections.ObjectModel.ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e)

The implementation I have gone with uses the Reset event that is more evenly implemented around the WPF framework:

    public void AddRange(IEnumerable<T> collection)
    {
        foreach (var i in collection) Items.Add(i);
        OnPropertyChanged("Count");
        OnPropertyChanged("Item[]");
        OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
    }
link|flag
you could go with an add for every item, but your UI will crawl to a halt – Sam Saffron May 12 at 4:56
vote up 0 vote down

(Edit: Still new to this StackOverflow thing... Didn't notice I was replying to such an old question.)

You may want BindingList(Of T) which has a RaiseListChangedEvents property.

bool oldEnabled = list.RaiseListChangedEvents;
list.RaiseListChangedEvents = false;
try {
    foreach (object item in items) {
        list.Add(item);
    }
}
finally {
    list.RaiseListChangedEvents = oldEnabled;
}

list.ResetBindings(); // raises a list changed event of type "reset"
link|flag
Pardon my ignorance here.. Bindinglist seems to be used to toggle on/off ListChanged events for a List control. The original question was to have a collection signal a batch update in some manner so that UI Controls data-bound to that collection can update at once (instead of doing a item by item update) – Gishu May 14 at 5:31
BindingList is a generic collection. It implements many interfaces that make it useful for binding to a list control but it by no means requires that. The RaiseListChangedEvents property toggles the behavior of the BindingList class which raises its ListChanged event when the collection is modified. – Josh Einstein May 15 at 3:54
vote up 0 vote down

Take a look at Observable collection with AddRange, RemoveRange and Replace range methods in both C# and VB.

In VB: INotifyCollectionChanging implementation.

link|flag
vote up 0 vote down

For fast adding you could use

((List)this.Items).AddRange(NewItems);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.