Ben düzgün çalışıyorsa aşağıdaki sorgu var:
$q = $this->createQuery('e')
->where('e.Persons_idUser =?', $request)
->leftJoin('e.JobTitles jt')
->leftJoin('e.EmploymentLevels el');
ama sonuç yineleme ve soldan alanları erişmeye çalıştığınızda olduğumda katılmak:
foreach ($work as $w){
echo $w->employername;
echo $w->jobtitle; // this is from the left join
echo $w->employmentlevel; // this is from the left join
}
I got the following error message: Unknown record property / related component "jobtitle" on "Experiences"
Herkes bir ipucu var mı? Nasıl bir sol bir alan katılmak yankı mı?