gpt4 book ai didi

c# - 空 linq 查询的返回值

转载 作者:太空宇宙 更新时间:2023-11-03 19:57:13 25 4
gpt4 key购买 nike

您好,我有以下 linq 查询

var query=DbContext.Set<tasksList>()
Select(u=> new { tasks= u.description});

我想要做的是,当它遍历 if description 为 null 以返回一些其他值时,例如只返回 1 或任何值。请让我知道如何实现这一点谢谢

最佳答案

您可以使用空合并运算符。

var query = DbContext.Set<tasksList>()
.Select(u=> new { tasks= u.description ?? "just 1 or anything"});

示例: Code Project - How to Use Null-Coalescing Operator (??)

引用: Reference MSDN

关于c# - 空 linq 查询的返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32276801/

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