これは私のリポジトリレイヤーです:
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 つのレコードを表示したいとします。