我有以下实体:
class Employee {
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $employeeId;
/**
* @ORM\Column(type="string", length=45, unique=true)
*/
protected $username;
/**
* @ORM\Column(type="string", length=255, nullable=false)
*/
protected $email;
我正在运行以下代码:
$employee = new Employee();
$employee->setUsername('test');
$em = $this->getDoctrine()->getManager();
$em->persist($employee);
$em->flush();
正如您所看到的,我没有为电子邮件列设置值。
但是坚持到底我得到了:
SQLSTATE [23000]:完整性约束违规:1048列'email'不能为空
因为Doctrine将所有实体列添加到INSERT查询并为电子邮件列设置空值。
有没有办法在插入时跳过未设置的列?或者使Doctrine插入''(空字符串)作为非null,字符串列的默认值?
答案 0 :(得分:2)
您可以允许自己的列null
,设置nullable=true
:
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
protected $email;
这不会引发SQL错误。但是如果你想保持一致,可以使用validation,这样你就可以在持久性之前处理空字段:
use Symfony\Component\Validator\Constraints as Assert;
...
/**
* @Assert\NotBlank()
* @ORM\Column(type="string", length=255)
*/
protected $email;
通过这种方式,您可以更具体的方式处理验证错误,例如文档中所述:
$author = new Author();
// ... do something to the $author object
$validator = $this->get('validator');
$errors = $validator->validate($author);
if (count($errors) > 0) {
return new Response(print_r($errors, true));
} else {
return new Response('The author is valid! Yes!');
}
如果您只希望列的默认值为have a look at this question。
答案 1 :(得分:0)
我似乎只需要使用entity __construct来设置默认值:
__construct() {
$this->email = '';
}
答案 2 :(得分:0)
你的数据模型没有学说,这是个问题。您明确声明每个记录在电子邮件列中应该有一些值。因此要么从实体中删除NOT NULL约束,要么只在电子邮件列上设置一些值。在这种情况下,学说只是做你告诉它要做的事情。