I'm looking for more information and a little reassurance about the virtualised grid.
I am using Entity Framework and like the concept of the virtual grid. I note, however, that the grid requires a List<objecttype> from which to work, and the example uses a service to load the List with items from the database, which is then virtualised regarding rendering on screen. This means that the data retrieval from the database is not virtualised, just the lines which are displayed on screen.
I suppose this is okay for modestly sized data table. I added 7,000 items into a table and it was still quite fast. What if we had 2,000,000 records? We would not want to load all of them at once and that is where data recovery virtualisation is needed.
Have I misunderstood what is happening? Is there a way to virtualise the data extraction - which should also be able to extract while taking sorts and filters into account?
I look forward to hearing how this works.
Rehgards
Craig Sheppard