Skip to content

Instantly share code, notes, and snippets.

@Guifgr
Created October 27, 2021 13:51
Show Gist options
  • Save Guifgr/1a64cf250dd8f1d6f63dfcc299ebc73d to your computer and use it in GitHub Desktop.
Save Guifgr/1a64cf250dd8f1d6f63dfcc299ebc73d to your computer and use it in GitHub Desktop.
Linq pagination
var something = await queryList
.Skip((page - 1) * pageSize)
.Take(pageSize)
.ToListAsync();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment