gpt4 book ai didi

linq - 如何在 order by 子句中忽略 'null'

转载 作者:行者123 更新时间:2023-12-01 23:30:57 25 4
gpt4 key购买 nike

我如何在 orderby 时忽略 name 属性中的 Null

student.Students= student.student.OrderBy(s=> s.Name ?? null).ToList();

上面的代码总是返回list of students having Name = null as 1st element in the list and student with name 'system' in the end.

我想要在 orderby 中忽略/排除 null。 null 应该总是排在列表的末尾

最佳答案

您可以创建一个有条件的 OrderBy:

student.Students= student.student
.OrderBy(s=> s.Name == null ? 1 : 0)
.ThenBy(s => s.Name)
.ToList();

这首先分为两组,s.Name != null 的项目和 s.Name == null 的项目。第二个排序条件是 Name 本身。

关于linq - 如何在 order by 子句中忽略 'null',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35843000/

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