like say I want to make a method in my repository like
public IQueryable<Item> GetAllItemsByRange(int start, int end)
and then I just want to pass like (1, 100), (101, 200), (201, 300), etc so I can get back ONLY that range without having to get EVERYTHING at once
thanks!