gpt4 book ai didi

c# - 序列不包含匹配元素错误使用 bool

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

bool Postkey =
statement
.ThreadPostlist
.First(x => x.ThreadKey == ThreadKey && x.ClassKey == classKey)
.PostKey;

此 Ling 查询显示“序列不包含匹配元素”,但我知道我可以使用 .FirstorDefault()。当我使用 .FirstorDefault() 时,当没有匹配的记录时,它会返回 falsebool 的默认值。

但我收到“对象未设置为对象的实例”错误。我需要使用 .HasValue.Value 检查 bool 是否为 null。我不知道该怎么做。

最佳答案

下面是如何使用可为空的 bool 值来解决这个问题:

bool? postKey = null;
// This can be null
var post = statement.ThreadPostlist.FirstOrDefault(x=>x.ThreadKey == ThreadKey && x.ClassKey == classKey);
if (post != null) {
postKey = post.PostKey;
}
// Now that you have your nullable postKey, here is how to use it:
if (postKey.hasValue) {
// Here is the regular bool, not a nullable one
bool postKeyVal = postKey.Value;
}

关于c# - 序列不包含匹配元素错误使用 bool ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29639396/

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