日期:2014-05-20 浏览次数:20893 次
var q = ( from c in db.Customers orderby c.ContactName select c) .Skip(50) .Take(10);var q = ( from p in db.Products where p.ProductID > 50 orderby p.ProductID select p) .Take(10);
------解决方案--------------------
linq语句本身有提供你需要的这些方法
orderby() skip(startIndex) take(pageSize)