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
... will simply ignore a JOIN statement for GiroAccount::$details. The query looks like this then:
FROM giro_account g0_
LEFT JOIN giro_account_card g1_ ONg0_.id=g1_.giro_account_idLEFT JOIN giro_account_card_detail g2_ ONg1_.id=g2_.card_id
... instead of ...
FROM giro_account g0_
LEFT JOIN giro_account_detail g1_ ONg0_.id=g1_.giro_account_idLEFT JOIN giro_account_card g2_ ONg0_.id=g2_.giro_account_idLEFT JOIN giro_account_card_detail g3_ ONg2_.id=g3_.card_id
The text was updated successfully, but these errors were encountered:
ServerExe
changed the title
Nested search fields with same property name of relations lead to wrong JOIN statement construction
Nested search fields with same relational property name lead to missing JOIN statements
Jan 28, 2025
Imagine having the following entities:
Now, you can see that there are relational properties with the name "details". This is causing an issue when chaining them in the search fields:
... will simply ignore a JOIN statement for
GiroAccount::$details
. The query looks like this then:... instead of ...
The text was updated successfully, but these errors were encountered: