【发布时间】:2014-03-24 17:40:15
【问题描述】:
我有这个 Lambda 语句:
TPGForumPost.Select(v => v).OrderByDescending(d => d.dateCreated)
我需要弄清楚如何将其限制为 5 个最新帖子。
【问题讨论】:
-
TPGForumPost.OrderByDescending(d => d.dateCreated).Take(5)就够了,你不需要Select
标签: c# asp.net-mvc linq entity-framework lambda