Closed henkmollema closed 7 months ago
.Where(x => x == 1 || x == 2) .AndWhere(x => x == 3 || x == 4)
generates
where x = 1 or x = 2 and (x = 3 or x = 4)
instead of
where (x = 1 or x = 2) and (x = 3 or x = 4)
This bug is introduced in #298
generates
instead of
This bug is introduced in #298