AsyncTable Paging Service

How can we implement an asynctable that does paging in the database? When creating a content provider I can see an option called LargeTable that supposedly can use a paging service to do something similar but I cannot find information about it.

You’ll need to create a Content Provider that implements IRefreshableContentProvider. Over in the samples, there is a SamplePagingService that is part of wm_coreproviderstest sample application that demonstrates implementing this interface. You’ll then need to invoke your custom SQL in the refresh() method.

Regards,
–mark