gpt4 book ai didi

doctrine-orm - Doctrine2 transient 字段(如 JPA)?

转载 作者:行者123 更新时间:2023-12-02 02:18:07 25 4
gpt4 key购买 nike

我的问题是我找不到是否可以以某种方式将字段指定为 transient 。

我知道在 java (JPA) 中你可以这样指定:

@Transient int transient;

Doctrine2中有类似的方法吗?

最佳答案

原则持续存在的实体上的每个字段都必须显式映射(例如,使用注释或 YAML)。如果您不希望实体上的字段被持久化,则不要为其添加任何学说映射:

/** @Entity */
class MyPersistentClass
{
/** @Column(type="integer") */
private $id; // will be persisted because it has a mapping

private $name; // won't be persisted because it does not have a mapping
}

关于doctrine-orm - Doctrine2 transient 字段(如 JPA)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9483416/

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