Skip to content

Instantly share code, notes, and snippets.

@AndyButland
Created May 21, 2023 13:14
Show Gist options
  • Save AndyButland/69652be3666d4bef67b0938c74951e57 to your computer and use it in GitHub Desktop.
Save AndyButland/69652be3666d4bef67b0938c74951e57 to your computer and use it in GitHub Desktop.
private static void ApplyPaging(PackageSearchQuery query, SearchOptions options)
{
options.Skip = (query.PageNumber - 1) * query.PageSize;
options.Size = query.PageSize;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment