gpt4 book ai didi

c# - Linq-to-SQL:忽略 WHERE 子句中的空参数

转载 作者:行者123 更新时间:2023-11-30 15:11:19 25 4
gpt4 key购买 nike

下面的查询应该返回具有在 ownerGroupIds 中提供的匹配 ID 或匹配 ownerUserId 的记录。但是 ownerUserId 为 null,我希望忽略这部分查询。

    public static int NumberUnderReview(int? ownerUserId, List<int> ownerGroupIds)
{
return ( from c in db.Contacts
where
c.Active == true
&&
c.LastReviewedOn <= DateTime.Now.AddDays(-365)
&&
( // Owned by user
!ownerUserId.HasValue ||
c.OwnerUserId.Value == ownerUserId.Value
)
&&
( // Owned by group
ownerGroupIds.Count == 0 ||
ownerGroupIds.Contains( c.OwnerGroupId.Value )
)
select c ).Count();
}

但是,当为 ownerUserId 传入 null 时,我会收到以下错误:Nullable object must have a value.

我感到有点刺痛,我可能必须在这种情况下使用 lambda 表达式?

最佳答案

你的问题是你没有传递一个可为空的 int,你传递的是一个 null。

试试这个:

Print(null);

private void Print(int? num)
{
Console.WriteLine(num.Value);
}

你会得到同样的错误。

如果你这样做,它应该会起作用:

var q = ( from c in db.Contacts
where
c.Active == true
&&
c.LastReviewedOn <= DateTime.Now.AddDays(-365)
&&
( // Owned by group
ownerGroupIds.Count == 0 ||
ownerGroupIds.Contains( c.OwnerGroupId.Value )
)
select c );

if(ownerUserId != null && ownerUserId.HasValue)
q = q.Where(p => p.OwnerUserId.Value == ownerUserId.Value);

return q.Count();

关于c# - Linq-to-SQL:忽略 WHERE 子句中的空参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2523699/

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