81

I am looking for Linq way (like RemoveAll method for List) which can remove selected items from my ObservableCollection.

I am too new to create an extension method for myself. Is there any way I remove items from ObservableCollection passing a Lambda expression?

Arpit Khandelwal
  • 1,743
  • 3
  • 23
  • 34

8 Answers8

111

I am not aware of a way to remove only the selected items. But creating an extension method is straight forward:

public static class ExtensionMethods
{
    public static int Remove<T>(
        this ObservableCollection<T> coll, Func<T, bool> condition)
    {
        var itemsToRemove = coll.Where(condition).ToList();

        foreach (var itemToRemove in itemsToRemove)
        {
            coll.Remove(itemToRemove);
        }

        return itemsToRemove.Count;
    }
}

This removes all items from the ObservableCollection that match the condition. You can call it like that:

var c = new ObservableCollection<SelectableItem>();
c.Remove(x => x.IsSelected);
Daniel Hilgarth
  • 171,043
  • 40
  • 335
  • 443
54

Iterating backwards should be more efficient than creating a temporary collection as in Daniel Hilgarth's example.

public static class ObservableCollectionExtensions
{
    public static void RemoveAll<T>(this ObservableCollection<T> collection,
                                                       Func<T, bool> condition)
    {
        for (int i = collection.Count - 1; i >= 0; i--)
        {
            if (condition(collection[i]))
            {
                collection.RemoveAt(i);
            }
        }
    }
}
StayOnTarget
  • 11,743
  • 10
  • 52
  • 81
guams
  • 541
  • 4
  • 2
  • 2
    In a real world app under test, I found this was indeed faster than the temp collection - average time of 44ms and peak 62ms vs the temp collection with average time of 55ms and peak 93ms – danio Jan 18 '16 at 15:44
15

How about this implementation for a one-liner?

observableCollection.Where(l => l.type == invalid).ToList().All(i => observableCollection.Remove(i))

-- Edit --

Sorry, yes, you need a ToList() in the middle to force the first half to evaluate, as LINQ does lazy evaluation by default.

simonalexander2005
  • 4,338
  • 4
  • 48
  • 92
  • i tried this one but ended up with error: "Collection was modified; enumeration operation may not execute." – usefulBee Nov 13 '15 at 22:08
  • I found this to be a very simple/elegant solution. Are there any drawbacks to this over the longer solutions with more up votes? – Shimeon May 10 '16 at 21:03
  • readability, perhaps. It's not clear on first read what it's doing, whereas the accepted answer splits it into two more obvious parts. – simonalexander2005 May 11 '16 at 09:57
  • I'd recommend `List.ForEach` instead of `All`. I think the `All(...)` is an artifact from before `ToList()` was added. – grek40 Jan 04 '18 at 11:20
10

Each of solution proposed here which uses routine to remove item one by one has one fault. Imagine that you have many items in observable collection, lets say 10.000 items. Then you want to remove items which meets some condition.

If you use solution from Daniel Hilgarth and call: c.Remove(x => x.IsSelected); and there are for example 3000 items to be removed, proposed solution will notify about each item removal. This is due to fact that internal implementation of Remove(item) notify about that change. And this will be called for each of 3000 items in removal process.

So instead of this i created descendant of ObservableCollection and add new method RemoveAll(predicate)

[Serializable]
public class ObservableCollectionExt<T> : ObservableCollection<T>
{
    public void RemoveAll(Predicate<T> predicate)
    {
        CheckReentrancy();

        List<T> itemsToRemove = Items.Where(x => predicate(x)).ToList();
        itemsToRemove.ForEach(item => Items.Remove(item));

        OnPropertyChanged(new PropertyChangedEventArgs("Count"));
        OnPropertyChanged(new PropertyChangedEventArgs("Item[]"));
        OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
    }
}

Interesting line is itemsToRemove.ForEach(item => Items.Remove(item));. Calling directly Items.Remove(item) will not notify about item removed.

Instead after removal of required items, changes are notified at once by calls:

OnPropertyChanged(new PropertyChangedEventArgs("Count"));
OnPropertyChanged(new PropertyChangedEventArgs("Item[]"));
OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
StayOnTarget
  • 11,743
  • 10
  • 52
  • 81
psulek
  • 4,308
  • 3
  • 29
  • 37
  • WPF Note: When using this with ItemsControl, the control will call Clear internally when using NotifyCollectionChangedAction.Reset; this resulted in undesired side effects in my specific use case when I had animations on newly added items ~ http://referencesource.microsoft.com/PresentationFramework/R/54a1cccb1b601b36.html – cookbr Apr 23 '15 at 14:37
  • 2
    In a real world app under test, I found this was actually slower than the temp collection - average time of 67ms and peak 152ms vs the temp collection with average time of 55ms and peak 93ms. Bear in mind this was only for a small collection though. – danio Jan 18 '16 at 15:44
2

This is my version of an extension method solution, which is only a slight variation on the accepted answer, but has the advantage that the count returned is based on confirmed removal of the item from the collection:

public static class ObservableCollectionExtensionMethods
{
    /// <summary>
    /// Extends ObservableCollection adding a RemoveAll method to remove elements based on a boolean condition function
    /// </summary>
    /// <typeparam name="T">The type contained by the collection</typeparam>
    /// <param name="observableCollection">The ObservableCollection</param>
    /// <param name="condition">A function that evaluates to true for elements that should be removed</param>
    /// <returns>The number of elements removed</returns>
    public static int RemoveAll<T>(this ObservableCollection<T> observableCollection, Func<T, bool> condition)
    {
        // Find all elements satisfying the condition, i.e. that will be removed
        var toRemove = observableCollection
            .Where(condition)
            .ToList();

        // Remove the elements from the original collection, using the Count method to iterate through the list, 
        // incrementing the count whenever there's a successful removal
        return toRemove.Count(observableCollection.Remove);
    }
}
Chris Peacock
  • 4,107
  • 3
  • 26
  • 24
1

There is no way to pass an expression to the ObservableCollection to remove matching items, in the same way that a generic list has. ObservableCollection adds and removes one item at a time.

You will have to create your own implementation of INotifyCollectionChanged in order to do this, or as you mention create an extension method.

jjrdk
  • 1,882
  • 15
  • 18
1
ObservableCollection<AppVariable<G>> _appVariables = new new ObservableCollection<AppVariable<G>>();

var temp = AppRepository.AppVariables.Where(i => i.IsChecked == true).OrderByDescending(k=>k.Index);

foreach (var i in temp)
{
     AppRepository.AppVariables.RemoveAt(i.Index);
}
0

Kinda late but just posting this up here since I couldn't find another solution online while I ran into this same issue:

    obj objToRemove = Collection.First(obj => obj.ID == ID);
    Collection.Remove(objToRemove);

Assuming u have an ID or Name of sorts where u can get your desired object to remove, you can use the '.First' method from ObservableCollections to get your object to remove and call the '.Remove' method to remove the selected item.

Alternatively, you can just throw the entire first line into the Remove method.

    Collection.Remove(Collection.First(obj => obj.ID == ID));