Details
-
Task
-
Resolution: Fixed
-
Major - P3
-
None
-
None
Description
Translate:
collection.Where(x => x.F % d == r)
|
to:
{ $match : { F : { $mod : [d, r] } } }
|
and translate:
collection.Where(x => x.F % d != r)
|
to:
{ $match : { $nor : [{ F : { $mod : [d, r] } }] } }
|
Attachments
Issue Links
- is depended on by
-
CSHARP-3404 LINQ3: Get LegacyPredicateTranslatorTests to pass
-
- Closed
-