We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Code:
new FilterLogical( [ new FilterLambda( LambdaCollection.ENTITY_SET, 'test123', LambdaOperator.ANY, new FilterLogical( [ new FilterComparison( 'id', OperatorComparison.EQ, new QuotedString(this.id), ), new FilterComparison( 'enabled', OperatorComparison.EQ, this.enabled, ), ], OperatorLogical.AND, ), ), ], OperatorLogical.NOT, ),
Generates:
((not test123/any(x:x/(id eq '123456asdasda' and enabled eq false))))
Should be: not test123/Any(w: w/id eq '123456asdasda' and w/enabled eq false)
not test123/Any(w: w/id eq '123456asdasda' and w/enabled eq false)
.NET Core OData returns:
The query specified in the URI is not valid. Syntax error at position 23 in '((not test123/any(x:x/(id eq '123456asdasda' and enabled eq false))))'.
The text was updated successfully, but these errors were encountered:
Sorry, I didn't receive a notification about this issue. I'm on vacation right now, but I'll try to fix this issue as soon as possible.
Sorry, something went wrong.
No branches or pull requests
Code:
Generates:
Should be:
not test123/Any(w: w/id eq '123456asdasda' and w/enabled eq false)
.NET Core OData returns:
The text was updated successfully, but these errors were encountered: