bind linq expression
- by Neir0
Hi,
I have a ListView and ObservableCollection in my wpf application.
I want to bind linq expression to ListView:
lv_Results.DataContext = store.Where(x => x.PR > 5);
But when i add new elements to store collection, lv_Results doesnt updates.
How can i update ListView?