Details
-
Task
-
Resolution: Fixed
-
Major - P3
-
None
-
None
Description
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 } } |
Attachments
Issue Links
- is depended on by
-
CSHARP-3473 LINQ3: Get PredicateTranslatorTests to pass
-
- Closed
-