标签: c# .net asp.net-mvc linq
我有两个已合并的列表。在linq声明的命令之后,我想从该完整列表中选择前5位。我正在考虑使用linq语句从列表中选择前5名。
var ListSort = from list in NewList orderby list.EntryDate select list;//Tried to select the top 5 from here
有关如何执行此操作的其他建议吗?
答案 0 :(得分:3)
如果您打算使用Linq,请使用Take statement
myList.Take(5)