Proposal: take
, skip
LINQ query clauses
#592
Replies: 5 comments
-
VB.NET already has some of these LINQ query clauses. Specifically Even if a general purpose continuable clause is added to the language I still think it's worth adding specific clauses to handle these really common cases. |
Beta Was this translation helpful? Give feedback.
-
Loving this proposal except I have to say that I would prefer |
Beta Was this translation helpful? Give feedback.
-
Prototype being developed in https://github.com/orthoxerox/roslyn/tree/features/linq-take-skip |
Beta Was this translation helpful? Give feedback.
-
See also dotnet/roslyn#100 |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Similar to #94, but covers more methods.
A query expression with a
take
clauseis translated into
A query expression with a
skip
clauseis translated into
A query expression with a
take while
clauseis translated into
A query expression with a
skip while
clauseis translated into
A query expression with a
take until
clauseis translated into
A query expression with a
skip until
clauseis translated into
Beta Was this translation helpful? Give feedback.
All reactions