Skip to content

Instantly share code, notes, and snippets.

@alimozdemir
Last active June 5, 2020 20:53
Show Gist options
  • Save alimozdemir/5c419e7e7f6d74a11b1a76d1abc8630d to your computer and use it in GitHub Desktop.
Save alimozdemir/5c419e7e7f6d74a11b1a76d1abc8630d to your computer and use it in GitHub Desktop.
Pagination Example
[HttpGet]
public IEnumerable<Entity> Get(int skip = 0, int take = 10)
{
return _db.Entities.Skip(skip).Take(take).ToList();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment