-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Is it possible to delay projection of the $select clause until after enumeration? #1405
Comments
@mfaulcon You can try the following:
Kindly let us know if this helps. If it doesn't, please share a repro that we can use to investigate. |
Another option would be to create an alternative version of the It might be possible even by just overriding the 2
We once did something like this to perform an extra custom projection on top of the one specified on |
For my use case, my data source is an IQueryable, where T must have a custom attribute applid. The net effect of this is that anonymous projections are not supported.
I have tested it as a source for OData, and as long as I do not have a $select clause, everything seems to work as work as expected; as soon as I add one, I get an exception. Is there a way for me to delay projection to the anonymous type until after the IQueryable has been queried and enumerated?
The text was updated successfully, but these errors were encountered: