I want to implement the data virtualization, but I dont know where to put my real collection of data in this example:
http://blogs.msdn.com/b/ptorr/archive/2010/08/16/virtualizing-data-in-windows-phone-7-silverlight-applications.aspx
I want to implement the data virtualization, but I dont know where to put
Share
Let us say your collection is List where Person is a Custom Class you have defined.
You should read a small subset of data from either a Service or Isolated Storage and set it as below.
In the VirtualizedDataSource.cs file update the getter of “this” property as under
Hope this helps.