gpt4 book ai didi

c# - Linq ThenBy 可能为空

转载 作者:太空狗 更新时间:2023-10-30 00:03:20 25 4
gpt4 key购买 nike

我正在尝试对绑定(bind)到多个属性的 View 模型进行排序。问题是第二个属性可能为空,我得到一个空引用异常。

return this.People
.OrderBy(x => x.Car.Name)
.ThenBy(x => x.Pet.Name);

如果 Pet 为空怎么办?我如何仍然按 Pet.Name 进行 ThenBy 排序?

最佳答案

这应该在返回非 null Pets 之前返回 null Pets。

return this.People
.OrderBy(x => x.Car.Name)
.ThenBy(x => x.Pet != null ? x.Pet.Name : "");

关于c# - Linq ThenBy 可能为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11278575/

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