I'd like to translate the following request with the doctrine query builder :
SELECT *
FROM t_prm_ad_administration AS r1
LEFT JOIN t_prm_ad_administration AS r2
ON r1.exec_order > r2.exec_order
AND r1.filename = r2.filename
WHERE r2.id = :id
Is it possible with the doctrine query builder using leftJoin() ? Thanks