Many WPF examples use CollectionViewSource as DataSource for DataBinding. It provides sorting and other useful functions. My question is, shouldn't this be done in Database? I mean in SQL? I bet it's 10times quicker. Isn't CollectionViewSource too slow? Thanks

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

sometimes you may not want additional roundtrips to a database especially if you want fast response times when grouping/sorting. Imagine a incremental search where non-fitting items get invisible while you type. In addition, your datasource may not always be a database. imagine XML, runtime objects, data from a webservice, etc...

link|improve this answer
Thank u for great response. I understand now the usage of CollectionViewSource. – PaN1C_Showt1Me Jul 7 '09 at 6:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.