-
Type: Improvement
-
Resolution: Done
-
Priority: Minor - P4
-
Affects Version/s: 1.4
-
Component/s: None
-
None
Treat the following as equivalent:
from c in collection.AsQueryable<C>() where c.X > 0 select c;
from c in collection.AsQueryable<C>() where 0 < c.X select c;
and similarly for other operators.
- is depended on by
-
CSHARP-430 LINQ does not support DateTime comparisons
- Closed