我有一个数据库第一个项目,我有脚手架来创建CRUD。
是否可以添加分页?我的问题是我的Index()是异步任务而不是视图结果。
我已经关注了这篇文章Sorting, Filtering, and Paging和其他几个......但他们都认为你的索引是一个ActionResult。
public async Task<ActionResult> Index()
{
return View(await db.TABLENAME.ToListAsync());
}
以上是我目前的指数()。
public ViewResult Index(string sortOrder, string searchString) {
return View(students.ToList());
}
以上是假定的ViewResult。
您如何处理使用异步更新分页?
有限的预览会很棒。我是c#的新手。