I have an application which is connected to a WCF service collecting data from an SQL server database store procedure. From the UI side i have read many article on the use of DataVirtualization in order to optimized displaying large amount of data.
BUt after reading quite many it is ot clear how should I implement such solution for my data coming from my database.
Do i have to call all my records once from table, and then handle the whole virtualization from UI side or does the database should already return PAged records ?
I will be glad if some of you have sample implementation with SQl data and Virtualization on UI side or good link which shows that.
For time beeing I have see sample project with sample collection demo, but nothing against database stuff.