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?
I am not aware of a way to remove only the selected items. But creating an extension method is straight forward:
This removes all items from the
ObservableCollection
that match the condition. You can call it like that: