I am having a hard time finding the correct result for this.
I have one to one mapping. There are two tables:
/** * @ORM\\Table(name=\"users\") * @ORM\\E
You can enable extra lazy loading of associations using fetch="EXTRA_LAZY" in your annotations.
fetch="EXTRA_LAZY"
* @ORM\OneToOne(targetEntity="Users", inversedBy="userSetting", fetch="EXTRA_LAZY")