0

我有一个 Linq to Entity Select 语句,它当前正在从数据库中返回所有行。由于第一行数据包含标题信息,是否可以从结果集中排除第一行?

var surveyProgramType = surveyProgramTypeRepository
                        .Find()
                        .OrderBy(x => x.ProgramType);
4

2 回答 2

10

采用.Skip()

var surveyProgramType = surveyProgramTypeRepository
    .Find()
    .OrderBy(x => x.ProgramType)
    .Skip(1);
于 2012-10-03T19:42:52.673 回答
1
var surveyProgramType = surveyProgramTypeRepository
    .Find()
    .OrderBy(x => x.ProgramType).Skip(1);
于 2012-10-03T19:44:24.890 回答