|
|
Browse by Tags
All Tags » DSL » Java » Ruby » LINQ
-
Yesterday I came across Chris Wanstrath Ambition project which is very similar to my Quaere project. To exemplify the similarities between LINQ, Ambition and Quaere, here is the same query expressed in each ''language''.
LINQ var expensiveProducts =
from p in products
where p.UnitsInStock > 0 ...
|
|
|