学说2类遗传映射



我正在尝试弄清楚如何正确映射我的实体,以便我可以制作原则 2 类表继承(此处为文档)

所以我尝试了许多不同的解决方案,但我似乎无法使用命令行工具验证我的模型(doctrine:schema:validate)

这就是我尝试的。我没有更改父类,所以我会把它留在这里。

ApiTestBundleEntityItem:
type: entity
table: items
inheritanceType: JOINED
discriminatorColumn:
  name: type
  type: string
  nullable: false
  length: 32
  fixed: false
  comment: ''
discriminatorMap:
    item_property_facebook: ItemPropertyFacebook
id:
    id:
        type: integer
        nullable: false
        unsigned: false
        comment: ''
        id: true
        generator:
            strategy: AUTO
fields:
    bundledType:
        type: string
        nullable: false
        length: 32
        fixed: false
        comment: ''
        column: bundled_type
lifecycleCallbacks: {  }

对于儿童班,我首先放了另一个 id:

ApiTestBundleEntityItemPropertyFacebook:
type: entity
table: item_property_facebook
id:
    id:
        type: integer
        nullable: false
        unsigned: false
        comment: ''
        id: true
        generator:
            strategy: AUTO
fields:
    account_id:
        type: integer
lifecycleCallbacks: {  }

显然,我得到:

Duplicate definition of column 'id' on entity 'ApiTestBundleEntity
ItemPropertyFacebook' in a field or discriminator column mapping.

所以我尝试删除孩子中的 id 定义,我得到:

No identifier/primary key specified for Entity "ApiTestBundleEntit
yReferenceItemPropertyFacebook". Every Entity must have an identifier/prim
ary key.

所以我完全不知道。在文档中,他们只是设置了基本的东西,但没有设置id,我在网上找不到任何东西,因为我可能没有很好地制定它。我读过关于关联键的文章,但是当我尝试过时,教义告诉我同样的事情

No identifier/primary key specified for Entity "ApiTestBundleEntit
yReferenceItemPropertyFacebook". Every Entity must have an identifier/prim
ary key.

因此,如果您有任何线索,我将不胜感激。多谢!

我不

熟悉 yaml 生成,但是当我使用 php 注释尝试您的结构时,它对我有用,重复的 id 列没有问题:

/**
 * @ORMEntity
 * @ORMTable(name="items")
 * @ORMInheritanceType("JOINED")
 * @ORMDiscriminatorColumn(name="type", type="string")
 * @ORMDiscriminatorMap({"item" = "Item", "item_property_facebook" = "ItemPropertyFacebook"})
 */
class Item {
    /**
     * @ORMColumn
     * @ORMId
     * @ORMGeneratedValue()
     */
    protected $id;
    /**
     * @ORMColumn(type="string")
     */
    protected $bundledType;
}
/**
 * @ORMEntity
 * @ORMTable(name="item_property_facebook")
 */
class ItemPropertyFacebook extends Item {
    /**
     * @var
     * @ORMColumn(type="integer")
     * @ORMId
     * @ORMGeneratedValue()
     */
    protected $id;
    /**
     * @ORMColumn(type="integer")
     */
    protected $account_id;
}

将生成这些 sql 命令:

CREATE TABLE items (id VARCHAR(255) NOT NULL, bundledType VARCHAR(255) NOT NULL, type VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
CREATE TABLE item_property_facebook (id VARCHAR(255) NOT NULL, account_id INT NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB;
ALTER TABLE item_property_facebook ADD CONSTRAINT FK_B8C39352BF396750 FOREIGN KEY (id) REFERENCES items (id) ON DELETE CASCADE

唯一的区别是,我必须"item = "Item"添加到DiscriminatorMap。

另外,id 定义中应该有id: true行吗?对我来说似乎是多余的。

相关内容

  • 没有找到相关文章

最新更新