这是我的存储库层:
public List<Section> GetAllSections()
{
return context.Sections.Include("Groups").Include("Groups.Classes").ToList();
}
这是我的应用层:
public List<Section> GetAllSections()
{
return cacheSectionRepo.GetAllSections();
}
在控制器中我有:
SectionApplication sectionApp = new SectionApplication();
public ActionResult Index()
{
return View(sectionApp.GetAllSections());
}
现在我想让我的Index
视图分页。我想从 PagedList 中使用。我应该怎么做?例如,我希望每页显示 5 条记录。