对通用列表按降序排序
本文关键字:降序 排序 列表 | 更新日期: 2023-09-27 18:11:02
我在控制器中有一个方法
public ActionResult Index()
{
return View(db.Posts.ToList());
}
如何按降序获得列表?不是从id:1开始而是从表中最后一个id开始
public ActionResult Index()
{
return View(db.Posts.OrderByDescending(p => p.Id).ToList());
}
使用Enumerable。OrderByDescending方法
按降序对序列中的元素进行排序。
public ActionResult Index()
{
return View(db.Posts.OrderByDescending(r=> r.id).ToList());
}
像这样:
db.Posts.OrderByDescending(x => x.id).ToList();