Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 LINQ 上的新手。我想显示观看次数较高的 5 内容。我的表上已经有 Viewed 字段,如果用户单击 ReadMore 按钮,它将增加 1。
list.OrderByDescending(x=>x.Viewed).Take(5)