Get entityManager inside an Entity

前端 未结 5 598
自闭症患者
自闭症患者 2020-11-30 09:44

I\'d like to use, something like:

$em = $this->getEntityManager();

Inside a Entity.

I understand I should do this as a s

5条回答
  •  甜味超标
    2020-11-30 10:25

    Calling the Entity Manager from inside an Entity is a bad practice! You should keep your entities as simple as possible.

    For what purpose do you need to call the Entity Manager from an Entity?

提交回复
热议问题