You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently our FromBuilder only supports the usage of entities, but JPQL subqueries may also contain other constructs.
A derived_path_expression is a reference to some association of a variable defined by the parent query. The following example should illustrate how that can look.
SELECT a FROM A a WHERE EXISTS(SELECT 1 FROM a.collection)
Note that the non-terminals derived_collection_member_declaration and collection_member_expression IMO provide the same functionality like derived_path_expression which is why I'd opt for just implementing it that way.
The text was updated successfully, but these errors were encountered:
Currently our FromBuilder only supports the usage of entities, but JPQL subqueries may also contain other constructs.
A
derived_path_expression
is a reference to some association of a variable defined by the parent query. The following example should illustrate how that can look.SELECT a FROM A a WHERE EXISTS(SELECT 1 FROM a.collection)
Note that the non-terminals
derived_collection_member_declaration
andcollection_member_expression
IMO provide the same functionality likederived_path_expression
which is why I'd opt for just implementing it that way.The text was updated successfully, but these errors were encountered: