gpt4 book ai didi

doctrine-orm - 设置主键的值,策略设置为 NONE

转载 作者:行者123 更新时间:2023-12-04 06:40:40 24 4
gpt4 key购买 nike

我有一个看起来像这样的实体类:

<?php

namespace Entities;

/** @Entity @Table(name="User") */
class User
{
/**
* @Id
* @Column(type="string", length=12)
*/
private $no;

基于 Doctrine 2 标识符生成策略部分:

NONE: Tells Doctrine that the identifiers are assigned (and thus generated) by your code. The assignment must take place before a new entity is passed to EntityManager#persist. NONE is the same as leaving off the @GeneratedValue entirely.



这意味着,我需要一种方法,以便我可以在调用持久化之前设置该值。

调用 ./doctrine orm:generate-entities不会生成 setter 函数,我是否必须在类中手动编写它?
/**
* Set no
*
* @param string $no
*/
public function setNo($no)
{
$this->no = $no;
}

这是正确的方法吗?

最佳答案

没有“正确”的方法可以做到这一点。 Generate-entities 命令只是一个 helper 。没有什么你必须使用的。你可以随心所欲。

分配策略的唯一要求是,调用 $em->persist() 时 id 字段必须为非空。

例如,在分配 ID 的情况下,将其设为构造函数中的必需参数是有意义的:

class User
{
private $no;
public function __construct($no)
{
$this->no = $no;
}
}

关于doctrine-orm - 设置主键的值,策略设置为 NONE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4291120/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com