Do you want to use Take (N);
var data = (from p in people select p).Take(100);
If you want to skip some entries, you can also use Skip, it will skip the first number N:
var data = (from p in people select p).Skip(100);
Lukasz Apr 24 '09 at 19:49 2009-04-24 19:49
source share