我有一个 Linq to Entity Select 语句,它当前正在从数据库中返回所有行。由于第一行数据包含标题信息,是否可以从结果集中排除第一行?
var surveyProgramType = surveyProgramTypeRepository
.Find()
.OrderBy(x => x.ProgramType);
我有一个 Linq to Entity Select 语句,它当前正在从数据库中返回所有行。由于第一行数据包含标题信息,是否可以从结果集中排除第一行?
var surveyProgramType = surveyProgramTypeRepository
.Find()
.OrderBy(x => x.ProgramType);