Linq 选择记录范围
var q = (from Comments in db.tblBlogComments where Comments.blogID == this.ID orderby Comments.date descending select new {
Comments.userID, Comments.comment, Comments.date
});
这将返回我的所有关联记录,我如何最好只选择记录 #10 到 #20,这样我就不会加载任何冗余数据?
var q = (from Comments in db.tblBlogComments where Comments.blogID == this.ID orderby Comments.date descending select new {
Comments.userID, Comments.comment, Comments.date
});
This returns ALL my associated records, how best would I select say records #10 to #20 only so I don't load any redundant data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样:
How about:
您可以在结果集上使用
.Skip()
和.Take()
方法。示例:然后使用:
然后
由于 Linq 使用延迟执行,将在 foreach 循环期间创建并执行实际查询。所以SQL查询只会返回当前页面的记录。
编辑:有关此主题的更多信息
You can use the
.Skip()
and.Take()
methods on your result set. Example:And then use:
And then
Since Linq uses deferred execution, the actual query will be created and executed during the foreach loop. So the SQL query will only return the records for the current page.
Edit: More information about this subject
我不确定
Skip
是否会转换为在数据库中执行的 SQL,因此这可能不是那么有效。I'm not sure if
Skip
translates to SQL executed in the database, so this might be not so efficient.