原则 2 - 不允许对多对一关系的外键使用空值
2022-08-30 09:45:47
我在我的一个实体中有一个 ManyToOne 关系,如下所示:
class License {
// ...
/**
* Customer who owns the license
*
* @var \ISE\LicenseManagerBundle\Entity\Customer
* @ORM\ManyToOne(targetEntity="Customer", inversedBy="licenses")
* @ORM\JoinColumn(name="customer_id", referencedColumnName="id")
*/
private $customer;
// ...
}
class Customer {
// ...
/**
* Licenses that were at one point generated for the customer
*
* @var \Doctrine\Common\Collections\ArrayCollection
* @ORM\OneToMany(targetEntity="License", mappedBy="customer")
*/
private $licenses;
// ...
}
这将生成一个数据库模式,其中允许许可证表的“customer_id”字段为 null,这正是我不希望的。
下面是一些代码,我在其中创建了一个记录,以证明它确实允许引用字段的空值:
$em = $this->get('doctrine')->getEntityManager();
$license = new License();
// Set some fields - not the reference fields though
$license->setValidUntil(new \DateTime("2012-12-31"));
$license->setCreatedAt(new \DateTime());
// Persist the object
$em->persist($license);
$em->flush();
基本上,我不希望在没有为客户分配许可证的情况下保留许可证。是否需要设置一些注释,或者我应该只要求将 Customer 对象传递给许可证的构造函数?
我使用的数据库引擎是MySQL v5.1,我在Symfony2应用程序中使用Therinsion 2。