如何在LINQ中选择第三条记录
我希望在单个查询中选择前 3 条记录,而不是选择前 3 条记录。
Instead of select the top 3 records, I hope to select the top 3rd record in a single query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的查询已经在结果集中定义了正确的顺序,您可以使用
Skip()
跳过前两个结果,然后最后获取第三个结果,如果不存在则返回 null(小于 3)结果):编辑:
实际上,这可以做得更短,因为
Take(1)
和SingleOrDefault()
可以用FirstOrDefault()
来表示:Assuming your query already defines the right order in your result set, you can just skip the first two using
Skip()
then finally take the third result, or null if it doesn't exist (less than 3 results):Edit:
Actually this can be done shorter, since the
Take(1)
andSingleOrDefault()
can be expressed withFirstOrDefault()
instead: