gpt4 book ai didi

c# - if-else 等效于通过 where 子句中的 linq-to-sql 查询 c#

转载 作者:行者123 更新时间:2023-11-30 13:18:11 24 4
gpt4 key购买 nike

基本上我想在我的 linq to sql 语句中有一个 if-else 语句。

var query = from d in database
if(x == y) {
where d.Attr = x
}
else {
where d.Attr = y
}
select d;

有什么想法吗?

最佳答案

假设,您的意思是 == 而不是 =:

from d in database
where (x == y && d.Attr == x) ||
(x != y && d.Attr == y)
select d;

关于c# - if-else 等效于通过 where 子句中的 linq-to-sql 查询 c#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2885567/

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