Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "SelectMany" #3

Closed
StefH opened this issue Apr 10, 2016 · 0 comments
Closed

Add "SelectMany" #3

StefH opened this issue Apr 10, 2016 · 0 comments
Assignees
Labels

Comments

@StefH
Copy link
Collaborator

StefH commented Apr 10, 2016

I'm trying to implement the SelectMany statement inside of the dynamic linq expresion parser, such that I could run a query like so:
Customers.Select("Orders.SelectMany(OrderItems)")

Such that it would be equivilent to the linq query:
Customers.Select(cust => cust.Orders.SelectMany(ord => ord.OrderItems))

See http://stackoverflow.com/questions/20269475/how-to-implement-selectmany-in-system-linq-dynamic-expressionparser

@StefH StefH self-assigned this Apr 10, 2016
@StefH StefH added the feature label Apr 10, 2016
StefH added a commit that referenced this issue Apr 10, 2016
@StefH StefH closed this as completed May 2, 2016
StefH pushed a commit that referenced this issue Oct 24, 2018
Update DynamicExpressionParserTests.cs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

No branches or pull requests

1 participant