gpt4 book ai didi

c# - query = query.OrderBy(p => p.IsTop).ThenOrderByDescending(p => p.JobId)?

转载 作者:太空宇宙 更新时间:2023-11-03 20:35:08 26 4
gpt4 key购买 nike

我想按 IsTop 属性升序​​排序对象,然后按 JobId 属性降序排序:

query = query.OrderBy(p => p.IsTop).ThenOrderByDescending(p => p.JobId);

我该怎么做?我知道反过来:

query = query.OrderByDescending(p => p.IsTop).ThenBy(p=>p.JobId)

语法有效,但不是我想要的。我想要的实际上是无论什么情况 IsTop 项目都会在顶部!

最佳答案

Bool按升序排序为假,为真。

尝试:query.OrderByDescending(p => p.IsTop).ThenByDescending(p => p.JobId);

关于c# - query = query.OrderBy(p => p.IsTop).ThenOrderByDescending(p => p.JobId)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5346704/

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