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?
Bernardmoes
source share