学说不生成继承类的属性



我有一个抽象的MappedSuperClass和另一个名为"User"的类,它是这个MappedSuperClass的子类。问题是原则不会生成 User 类的属性。只有映射超类的属性。为什么?

<?php
namespace IsCoconutModels;
use DateTime;
use DoctrineORMMappingColumn;
use DoctrineORMMappingGeneratedValue;
use DoctrineORMMappingId;
use DoctrineORMMappingMappedSuperclass;

/** @MappedSuperclass */
abstract class BaseEntity
{
    /**
     * @var int
     * @Id 
     * @Column(type="integer") 
     * @GeneratedValue(strategy="AUTO")
     */
    protected $id;
    /** @Column(type="boolean")
     *  @var boolean
     */
    protected $deleted = false;
    /** @Column(name="creation_date_time", type="datetime")
     *  @var DateTime
     */
    protected $creationDateTime;
    protected function __construct()
    {
        $this->creationDateTime = new DateTime();
    }
}

这是我的实体,应该由教义在数据库中生成

<?php
namespace IsCoconutModels;
use DoctrineORMMapping as ORM;
use DoctrineORMMappingEntity;
use DoctrineORMMappingTable;
/**
 * @Entity
 * @Table(name="users")
 */
class User extends BaseEntity
{
    /**
     * @var string
     * @ORMColumn(type="string", length=512)
     */
    private $forename;
    /**
     * @var string
     * @ORMColumn(type="string", length=512)
     */
    private $surname;
    /**
     * @var string
     * @ORMColumn(type="string", length=512, unique=true, nullable=false)
     */
    private $email;
    /**
     * @var string
     * @ORMColumn(type="string", length=512, unique=true, nullable=false)
     */
    private $passwordHash;
}

这是doctrine orm:schema-tool:create --dump-sql的输出

CREATE TABLE users (id INT NOT NULL, deleted BOOLEAN NOT NULL, creation_date_time TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL, PRIMARY KEY(id));
CREATE SEQUENCE users_id_seq INCREMENT BY 1 MINVALUE 1 START 1;

缺少用户的类实体属性!为什么?

试试这个

* @ORMEntity
* @ORMTable(name="User")

实际上,这可能是解决方案:

改变:

abstract class BaseEntity

自:

class BaseEntity

看看这是否有效。可能没有,请尝试一下。

当我删除所有@ORM前缀时,它现在可以工作

我遇到了同样的问题,发现这是由于属性设置为私有。

/**
 * @ORMMappedSuperclass
 */
class BaseClass
{
    /**
     * @var string
     * @ORMColumn(type="string", length=250, nullable=false)
     */
    protected $channel;
    //private $channel;
 }

抽象类上的映射应该是* @ORMMappedSuperclass而不是/** @MappedSuperclass */。映射是由Doctrine完成的,因此ORM注释在这里很重要。您还需要确保抽象类中的属性是protected的(您已经说过它们是)

相关内容

  • 没有找到相关文章

最新更新