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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You always bind to an
ICollectionView, whether you make it explicit or not.Assume that we have
In this case, binding to
collectionor tocollectionViewis one and the same: the binding engine will bind to the default collection view (which is reference equal tocollectionView) if you tell it to bind tocollection.This means that the answer to your question is “it makes absolutely no difference”.
Just to be totally clear: even if you bind to the collection directly, the binding engine will bind to the default view. Modifying properties of the view such as sort criteria will affect the binding that appears to bind directly to the collection, since behind the covers it’s a binding to the default view instead.
However, there is another interesting and related question: should one bind to the default collection view (i.e., to the collection itself, because there’s no reason to explicitly bind to the default view) or to another view of the same collection?
Considering that each view has its own notion of current item, sort criteria, etc, it follows that if you intend to have multiple bindings to the same collection, and the bound controls need to have distinct notions of current item, filters and company, then what you want is to explicitly bind to multiple views of the same underlying collection.