我正在尝试将复杂的sql语句转换为linq lambda表达式。
以下是我的sql语句示例:
select * from Kunden
where a=1
and b=1
and c=1
and (
(
(d=1 or d in (2, 3, 4, 5)) <---
and e in (1, 2, 3)
)
or
(
(f=1 or f in (2, 3, 4, 5)) <---
and g in (1, 2, 3)
)
)
)
and h=1
and i=1
至少我对组合或声明中的括号感到害怕。 需要一些帮助才能将此语句转换为linq表达式。我无法在服务器上激活本机sql,因为我们有一个复杂的linq表达式(大约3000行代码:-X)我们无法将其转换为sql。
总结:我需要LINQ EXPRESSION。
答案 0 :(得分:3)
您可以使用Linq中的Contains轻松完成,如下例所示:
List<int> valuesOne = new List<int> { 2,3,4,5 };
List<int> ValuesTwo = new List<int> { 1,2,3 };
var myLinq = (from k in Kunden
where k.a == 1 && k.b == 1 && k.c == 1 &&
((k.d == 1 || ValuesOne.Contains (k.d)) &&
ValuesTwo.Contains (k.e))) ||
// now do the same for f
我不太确定括号的位置,因为我不在开发机器上,但使用Contains可能是最好的方法
答案 1 :(得分:1)
where ... new[] {2, 3, 4, 5}.Contains(d)