I have this entities:
class Categoria { /** * @ORM\\Id * @ORM\\Column(type=\"integer\") * @ORM\\GeneratedValue */ protected $id;
Use this annotation:
/** * @ORM\OneToMany(targetEntity="LoPati\MenuBundle\Entity\subCategoria", mappedBy="categoria", cascade={"persist", "remove"} ) * @ORM\OrderBy({"order" = "DESC", "id" = "DESC"}) */ protected $subCategoria;
...