Linq选择记录范围

前端之家收集整理的这篇文章主要介绍了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.date }).Skip(10).Take(10);
原文链接:https://www.f2er.com/mssql/83683.html

猜你在找的MsSQL相关文章