LINQ to SQLにはorderby句がありますが、以下のようになりますが、ページ設定には何もありませんか?LINQ to SQLのページ分割
from trans in DB.transactions
orderby trans.column descending
select trans;
または、次のような手動で行う必要がありますか?
(from trans in DB.transactions
orderby trans.column descending
select trans).Skip(noOfRecords).Take(pageSize);
はい。あなたは 'Skip'と' Take'メソッドを手助けすることによってそれを行う必要があります。 –