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
That's OK. But when I filter, the datagrid run a first query with 2 left join and limit 10:
SELECT DISTINCT p0_.id AS id_0, d1_.nom AS nom_1, d1_.nom AS nom_2, a2_.nom AS nom_3, p0_.nom AS nom_4 FROM projet p0_ LEFT JOIN domaine d1_ ON p0_.id_domaine = d1_.id LEFT JOIN appli a2_ ON p0_.id = a2_.id_projet WHERE LOWER(p0_.nom) LIKE LOWER(?) ORDER BY p0_.nom ASC LIMIT 10
The next query is limited to this 10 id.
So, if there are several applis for a projet, not all relevant results are shown.
Is there a way to change the first query? (may be remove the left join with appli)
Thanks
The text was updated successfully, but these errors were encountered:
Hello,
I have three entities with ManytoOne/OneToMany relations:
To render ManytoOne relations in a pretty way, I use TextColumn with querybuilder.
That's OK. But when I filter, the datagrid run a first query with 2 left join and limit 10:
The next query is limited to this 10 id.
So, if there are several applis for a projet, not all relevant results are shown.
Is there a way to change the first query? (may be remove the left join with appli)
Thanks
The text was updated successfully, but these errors were encountered: