-
Notifications
You must be signed in to change notification settings - Fork 33
Description
Hi
I'm dealing with large sets of data. The way the BsBaseGridRepository is written, it needs all records to be loaded in the Index and then does queries on that data.
If you're dealing with large sets of data, you wouldn't want to load all the data from your backend (be it a database.. or even worse, a remote server).. instead you'd want the first page of records and a total record count so the pager can be constructed. Then upon every paging operation, the next page is actually loaded from your backend.
What's the most effective way to go about that? I see a bunch of Counts in the BsBaseGridRepository - which has me worried that I need to override large swaths of standard functionality just to get to an effective paging that only loads data that I actually need.
Thanks
Stephan