Should I bind to ICollectionView or ObservableCollection

Viewed 43659

Should one bind DataGrid to the

ICollectionView = CollectionViewSource.GetDefaultView(collection)

or to the

ObservableCollection<T> collection; ???

What is the best practice for MVVM and why?

5 Answers
Related