-
Type: Task
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: LINQ3
-
None
Instead of translating:
{ document.F >= 1 && document.F <= 3 }
to:
{ $and : [{ F : { $gte : 1 } }, { F : { $lte : 3 } }] }
render it as the smaller implicit and form:
{ F : { $gte : 1, $lte : 3 } }
- is depended on by
-
CSHARP-3473 LINQ3: Get PredicateTranslatorTests to pass
- Closed