gpt4 book ai didi

c# - 如何提取记录从 10 到 20

转载 作者:行者123 更新时间:2023-11-30 19:03:07 24 4
gpt4 key购买 nike

我有这个 LINQ 查询:

IEnumerable<Pack> pack = from Pack myPack in Packs
select myPack;

返回(例如)34 条记录。我只需要选择 10 到 20 条记录。我该怎么做?

最佳答案

结合使用 Skip()Take():

pack.Skip(10).Take(10);

或者,如果您想要一条语句:

// if you want records 11 - 20 which would be the second set of 10
var packs = Packs.Skip(10).Take(10);

// or if you want records 10 - 20 which would be a set of 11
var packs = Packs.Skip(9).Take(11);

关于c# - 如何提取记录从 10 到 20,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6832986/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com