How to set a start index and max rows like in MySQL limit but using Lambda Expressions in c-sharp:
.skip() = start index
.take() = max rows
Example: If you had a list of twenty items and you only wanted to get the last five items.
var ItemList = Got.From.DataSource();
foreach(var Item in ItemList.Skip(15).Take(5)){
//output result;
}
This saves you from querying your data source to get a set of results that might need to be displayed in different ways.

