7.5 Adding Pagination; e.g. 7.14 Adding Pagination Support to the Product Controller List Method

This commit is contained in:
Jason Zhu 2021-08-21 16:53:18 +10:00
parent 17cf2e94ba
commit aa4002de2b

View File

@ -9,6 +9,8 @@ namespace SportsStore.WebUI.Controllers
{
public class ProductController : Controller
{
public int PageSize = 4; // We will change this later
private IProductRepository repository;
public ProductController(IProductRepository productRepository)
@ -16,9 +18,12 @@ namespace SportsStore.WebUI.Controllers
repository = productRepository;
}
public ViewResult List()
public ViewResult List(int page = 1)
{
return View(repository.Products);
return View(repository.Products
.OrderBy(p => p.ProductID)
.Skip((page - 1) * PageSize)
.Take(PageSize));
}
}
}