我有一個Linq to Entity Select語句,它正在返回數據庫中的所有行。由於第一行數據包含標題信息,是否有可能從結果集中排除第一行?混在你的其他數據Linq to Entity選擇,排除第一個結果行?
var surveyProgramType = surveyProgramTypeRepository
.Find()
.OrderBy(x => x.ProgramType);
我有一個Linq to Entity Select語句,它正在返回數據庫中的所有行。由於第一行數據包含標題信息,是否有可能從結果集中排除第一行?混在你的其他數據Linq to Entity選擇,排除第一個結果行?
var surveyProgramType = surveyProgramTypeRepository
.Find()
.OrderBy(x => x.ProgramType);
使用.Skip()
var surveyProgramType = surveyProgramTypeRepository
.Find()
.OrderBy(x => x.ProgramType)
.Skip(1);
直到我將.Skip(1)放在.OrderBy之後,我才收到錯誤。如果你不介意編輯你的答案,我會接受它。謝謝! – user547794
var surveyProgramType = surveyProgramTypeRepository
.Find()
.OrderBy(x => x.ProgramType).Skip(1);
託德我格式化你的迴應,使其更具可讀性+1 – MethodMan
爲什麼你有標題的信息? –