0

これは私のリポジトリレイヤーです:

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ビューをページングしたいと思います。Pag​​edList から使用したいのですが、どうすればよいですか? たとえば、すべてのページに 5 つのレコードを表示したいとします。

4

1 に答える 1