Select a range with Entity Framework
问题 I have an issue trying to maximize the performance of our listview that has pages. I want the entity framework to do a select statement, but only return a range of the result (range = the items of one page of the listview). I have searched google but didn't find any results on this. I only found that I can do a .ToList().GetRange(start index, end index), but then all items would be loaded in memory, and that is what I would like to avoid... Can someone tell me if this can be done? (I don't