How do I get the list that is limit by the count of row? Without depending in row id.
List<object> listname = getitemfrom database();
Var startingcount = 2
Var filteredlist = listname.Where( // row startingpoint = startingcount);
Like for example I query list from database then I filter it out by the defined row count (startingcount) initial Rows: (listname)
- James , male
- Clint , male
- Rose , female
- John , male
Filtered rows: (filteredlist)
- Rose , female
- John. , Male
The result should be kind of like this.