关于如何在 asp.net mvc3 中添加“SELECT TOP”查询的问题
var applicant = from s in applicantRepository.GetApplicant()
select s;
在我的申请人中,我认为有 200,000 个数据,我只想选择前 50 个
那可能吗?谢谢库多斯!:)
关于如何在 asp.net mvc3 中添加“SELECT TOP”查询的问题
var applicant = from s in applicantRepository.GetApplicant()
select s;
在我的申请人中,我认为有 200,000 个数据,我只想选择前 50 个
那可能吗?谢谢库多斯!:)
以任意顺序返回前 50 行
var applicant =
(from s in applicantRepository.GetApplicant()
select s).Take(50);
如果你想申请排序,说有一个姓氏字段
var applicant =
(from s in applicantRepository.GetApplicant()
orderby s.LastName
select s).Take(50);
使用 Take 扩展方法:
var applicant = (from s in applicantRepository.GetApplicant()
select s).Take(50);