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
SOQL fails with an assertion exception when attempting to do a join over a plural attribute, e.g.,
SELECT a FROM TypeA a WHERE a.pluralAttribute.age > 18
Where pluralAttribute is a plural attribute.
pluralAttribute
This is apparently because it expects the attribute for join to be always singular. The same issue applies to Criteria API.
The text was updated successfully, but these errors were encountered:
Update: Criteria API has a different issue, but eventually it would end up with the same error. So both SOQL and Criteria API need fixing.
Sorry, something went wrong.
[Bug #135] Add tests to reproduce the issue.
9e87c52
[Bug #135] Support joining over plural attributes in SOQL.
5a3cf9c
[Bug #135] Improve bindable type resolution - remove instanceof.
5cee5cf
[Bug #135] Support path expressions over plural attributes in Criteri…
ac8a1bf
…a API.
No branches or pull requests
SOQL fails with an assertion exception when attempting to do a join over a plural attribute, e.g.,
Where
pluralAttribute
is a plural attribute.This is apparently because it expects the attribute for join to be always singular. The same issue applies to Criteria API.
The text was updated successfully, but these errors were encountered: