Primary key of owning side as a join column

You could also force partial objects, to get rid off lazy-loading:

use Doctrine\ORM\Query;

//...
$query->setHint(Query::HINT_FORCE_PARTIAL_LOAD, true);

Leave a Comment