0

我有一个包含两个 OneToMany 关系的类。这是sql squema 在此处输入图像描述

这里是不同的类。
电影

use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;

/**
 * @ORM\Entity
 * @ORM\Table(name="movies")
 * @property bigint $id
 * @property date $date
 * @property int $revision
 * @property string $original_title
 * @property string $thumbnail
 * @property string $plot
 */
class Movie {
    /**
    * @ORM\Id
    * @ORM\Column(type="bigint");
    * @ORM\GeneratedValue(strategy="AUTO")
    */
    protected $id;

    /**
    * @ORM\Column(type="date")
    */
    protected $date;

    /**
    * @ORM\Column
    * @ORM\Column(type="integer");
    */
    protected $revision;

    /**
    * @ORM\Column(type="string")
    */
    protected $original_title;

    /**
    * @ORM\Column(type="string")
    */
    protected $thumbnail;

    /**
    * @ORM\Column(type="string")
    */
    protected $plot;

    /**
     * @ORM\OneToMany(targetEntity="Exhibition", mappedBy="movie", cascade={"ALL"})
     */
    protected $exhibitions;

    /**
     * @ORM\OneToMany(targetEntity="Category", mappedBy="movie", cascade={"ALL"})
     */
    protected $categories;
}

展览

/**
* @ORM\Entity
* @ORM\Table(name="exhibitions")
* @property bigint $id
* @property string $title
* @property string $type
*/
class Exhibition
{

    /**
    * @ORM\Id
    * @ORM\Column(type="bigint");
    * @ORM\GeneratedValue(strategy="AUTO")
    */
    protected $id;

    /**
    * @ORM\Column(type="string")
    */
    protected $title;

    /**
    * @ORM\Column(type="string")
    */
    protected $type;

    /**
     * @ORM\OneToMany(targetEntity="Schedule", mappedBy="exhibition", cascade={"ALL"})
     */
    protected $schedules;

    /** @ORM\ManyToOne(targetEntity="Movie", inversedBy="exhibitions") 
     *  @ORM\JoinColumn(name="movie", referencedColumnName="id", onDelete="CASCADE")
     */
    private $movie;

    /** @ORM\ManyToOne(targetEntity="Cinema", inversedBy="exhibitions") 
     *  @ORM\JoinColumn(name="cinema", referencedColumnName="name", onDelete="CASCADE")
     */
    private $where;
}

类别

/**
 * @ORM\Entity
 * @ORM\Table(name="categories")
 * @property string $name
 */
class Category {
    /**
    * @ORM\Id
    * @ORM\Column(type="id")
    * @ORM\GeneratedValue(strategy="AUTO")
    */
    protected $name;

    /** 
     *  @ORM\ManyToOne(targetEntity="Movie", inversedBy="categories")
     *  @ORM\JoinColumn(name="movie", referencedColumnName="id", onDelete="CASCADE")
     */
    protected $movie;
}

如您所见,展览和类别都是 Movie 类中的 OneToMany/ManyToOne 关系。展览部分工作正常,但护理部分没有。

每当我尝试使用,例如:$movies[0]->categories,我都会收到内部服务器错误。但对于展览来说,一切都很好。

我在这里想念什么?这是我设置的方法吗?

谢谢!

4

1 回答 1

0

可能是因为您的类别主键与您的数据模型不匹配。这里的变量应该是 $id 而不是 $name。

/**
* @ORM\Id
* @ORM\Column(type="id")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $name;
于 2013-08-31T04:21:32.240 回答