我有一个包含两个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;
}
正如您所看到的,展览和类别都是电影类中的OneToMany / ManyToOne关系。展览部分工作正常,但护理部分没有。
每当我尝试使用时,例如:$ movies [0] - >类别,我收到内部服务器错误。但是对于展览来说一切都很好。
我在这里缺少什么? 这是我的设置方式吗?
谢谢!
答案 0 :(得分:0)
可能是因为您的类别主键与您的数据模型不匹配。这里的变量应该是$ id而不是$ name。
/**
* @ORM\Id
* @ORM\Column(type="id")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $name;