IncrementalLoadingCollection always load entire data when page is navigated. #4862
Unanswered
selastingeorge
asked this question in
Questions & Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have been working on a project where I need to load a list of courses from a database using incremental loading. Initially, when I load the page, it loads 30 items as expected. However, when I navigate to another page and come back, the entire list of items is loaded from the database instead of just the next set of 30 items.
It is calling
GetPagedItemsAsync
multiple times until all the data is loaded.This is my code.
I am not sure why it behaves like that, the sample from their docs works perfectly.
Beta Was this translation helpful? Give feedback.
All reactions