Symfony2 ORM prePersist Not Working

后端 未结 5 1200
既然无缘
既然无缘 2021-01-08 00:15

prePersist() method of my entity is not being invoked.



        
5条回答
  •  无人及你
    2021-01-08 00:50

    I have the same problem. According to docs you must enable lifecycle callbacks http://symfony.com/doc/current/book/doctrine.html

    /**
     * @ORM\Entity()
     * @ORM\HasLifecycleCallbacks()
     */
    class Product
    {
        // ...
    }
    

提交回复
热议问题