How to: Page Through Query Results
This topic shows how to page the results of a query. The example gets five Product objects after skipping the first three in the query result, which is sorted by Product.ListPrice. The same example is shown using each of the following Entity Framework query technologies:
The example in this topic is based on the Adventure Works Sales Model. To run the code in this topic, you must have already added the Adventure Works Sales Model to your project and configured your project to use the Entity Framework. For more information, see How to: Use the Entity Data Model Wizard (Entity Framework) or How to: Manually Configure an Entity Framework Project and How to: Manually Define an Entity Data Model (Entity Framework).
Example
This is the LINQ to Entities example.
This is the Entity SQL example.
This is the query builder method example.