How can we achieve jump to page on pagination, currently we only saw that current, next and previous are only available,
also, on github, they say sdk already handled pagination ok okta collections
e.g (var allUsers = await client.Users.ToArrayAsync();). can these handle large user records?
Yup! The SDK is currently already designed to handle pagination for you, so the allUsers var above will contain the complete list of users once the SDK has finished paginating the results.
Are you seeing different behavior in your tests? How many user records are we talking about here?
Hi, thank you for answering, we do currently have 30k+ users to be migrated to okta, and expected to grow. any suggestions how to implement efficient pagination with jump to page? thanks