-
Type: New Feature
-
Resolution: Won't Fix
-
Priority: Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: Linq
The following two LINQ queries are semantically equivalent:
- queryable.All(d => d.Field)
- !queryable.Any(d => !d.Field)
The second LINQ query is supported by the C# driver, whereas the first is not.
In principle it should be possible to support the first query as well by translating it into the second query.