-
-
Notifications
You must be signed in to change notification settings - Fork 231
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
GroupBy clause add an "Item" property when projects the query #75
Comments
I was trying in previous versions and works fine in 1.0.6.9. Doesn't work from 1.0.6.10. |
This change is indeed introduced when I added If you need all property names, use https://github.com/StefH/System.Linq.Dynamic.Core/blob/master/src/System.Linq.Dynamic.Core/DynamicClass.cs#L282 |
Ok, thanks! but, what is Item property? If I try to get the value throws an exception. |
I think that when you use the same rules for getting the valid properties like https://github.com/StefH/System.Linq.Dynamic.Core/blob/master/src/System.Linq.Dynamic.Core/DynamicClass.cs#L188, all will work fine. Or do you have a specific scenario? |
Using the previous example, If I try to get the value of property throws a System.Reflection.TargetParameterCountException.
|
The See Q+A here; |
Hi Stef,
GroupBy is adding an "extra" property called "Item" when I create a grouped query and projects it with Select.
Linq.Dynamic.Core 1.0.6.13
The text was updated successfully, but these errors were encountered: