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
fix: the stateOptions::entityClass should be used when present while building Links (#5550)
* fix: the stateOptions::entityClass should be used when present while building Links Fixes#5510 * proper fix --------- Co-authored-by: Manuel Rossard <manuel.rossard@u-bordeaux.fr> Co-authored-by: soyuka <soyuka@users.noreply.github.com>
$expressions["$previousAlias.{$property}"] = "SELECT $select FROM {$link->getFromClass()}$nextAlias INNER JOIN $nextAlias.{$associationMapping['fieldName']}$joinAlias WHERE ".implode(' AND ', $whereClause);
94
+
$expressions["$previousAlias.{$property}"] = "SELECT $select FROM {$fromClass}$nextAlias INNER JOIN $nextAlias.{$associationMapping['fieldName']}$joinAlias WHERE ".implode(' AND ', $whereClause);
89
95
$previousAlias = $nextAlias;
90
96
continue;
91
97
}
@@ -95,7 +101,7 @@ private function handleLinks(QueryBuilder $queryBuilder, array $identifiers, Que
0 commit comments