0
這是我的倉庫層:尋呼與PagedList
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
查看paged.I想使用PagedList.How應該這樣做嗎?例如,我想讓每個頁面顯示5條記錄。