教义。为什么我在ManyToMany上获得persistentCollection和一个空数组?

时间:2017-01-17 00:22:38

标签: php symfony doctrine-orm orm doctrine

这是我的实体:

/**
* Productgeneral
* @ORM\Table(name="ProductGeneral", indexes={@ORM\Index(name="category_id", columns={"category_id"})})
* @ORM\Entity
*/
class Productgeneral {

    //some cols

    /**
     * @var integer
     *
     * @ORM\Column(name="product_id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $productId;

    /**
     * @var \Doctrine\Common\Collections\Collection
     *
     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Productimg", inversedBy="product")
     * @ORM\JoinTable(name="producttoimg",
     *   joinColumns={
     *     @ORM\JoinColumn(name="product_id", referencedColumnName="product_id")
     *   },
     *   inverseJoinColumns={
     *     @ORM\JoinColumn(name="img_id", referencedColumnName="img_id")
     *   }
     * )
     */
    private $img;

    /**
     * Constructor
     */
    public function __construct() {
        $this->img = new \Doctrine\Common\Collections\ArrayCollection();
    }

    //getter & setters
}

/**
 * Productimg
 * @ORM\Table(name="ProductImg")
 * @ORM\Entity
 */
class Productimg {
    /**
     * @var integer
     *
     * @ORM\Column(name="img_id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $imgId;

    /**
     * @var \Doctrine\Common\Collections\Collection
     *
     * @ORM\ManyToMany(targetEntity="AppBundle\Entity\Productgeneral", mappedBy="img")
     */
    private $product;

    /**
     * Constructor
     */
    public function __construct() {
        $this->product = new \Doctrine\Common\Collections\ArrayCollection();
    }

    //getters & setters
}

当我跑步时:

*$this->getDoctrine()->getRepository('AppBundle:Productgeneral')->findAll();*

我的每列都有正确的值,但是img;它返回PersistentCollection而不是所有图像的数组。

我做错了吗?或者我只是误解了这种关系的行为?

1 个答案:

答案 0 :(得分:1)

默认的Doctrine行为是延迟获取映射实体,因此当您转储实体时,它似乎为null,因为数据尚未加载。

如果您调用getImg方法,则doctrine将查询您的数据库以加载链接到您的产品的相关Productimg实体。

一旦ArrayCollection被实体管理器持久化和管理,它就变成了PersistentCollection,它的行为恰好有一个ArrayCollection