Select n entries from the nth entry in linq

I am looking for something like LIMIT (10, 10) <- thats how it works in php

Products = Products.Take(10).ToList(); 

This is not what I want, because I want to record 10 records, starting from the 10th record.

Does anyone know how I can do this?

+7
source share
2 answers

Use Skip

 Products = Products.Skip(10).Take(10).ToList(); 
+7
source

try the following:

  Products = Products.Skip(10).Take(10).ToList(); 
+1
source

All Articles