C # UWP Windows 10
It is necessary to display a list of several tens of thousands of records in a grouped form. Now it is implemented as in the MSDN example through the CollectionViewSource which is the data source for the ListView . It works very well, but the problem is that you first need to load these records into memory from SQLite , which in itself takes a very long time. I found examples of how to implement ISupportIncrementalLoading , which would completely solve my problem, but it does not work with grouping.
What are the options for solving this problem?