0

当使用 generateModelsFromDb 生成模型时,Doctrine 在关系表和基表之间建立一对多关系,而不是在基表本身之间生成 nm 关系。有什么方法可以让 generateModelsFromDb 检测到 nm 关系?

4

1 回答 1

0

您可以使用 YAML 进行数据库设计。如果你想建立一个 NM 关系,你需要做这样的事情(它显示了一个关于拥有多个所有者的狗和拥有多个狗的所有者的愚蠢示例)

---
options:
    type: INNODB
    collate: utf8_unicode_ci
    charset: utf8

Human:
    columns:
        id:
            type: integer(4)
            primary: true
            autoincrement: true
        name:
            type: varchar(64)
            notnull: true
        ...
        ...
    relations:
        Dogs:
            foreignAlias: Humans
            class: Dog
            ref_class: Human_Dogs
Dog:
    columns:
        id: 
            type: integer(4)
            autoincrement: true
            primary: true
        owner:
            type: varchar(64)
            notnull: true
        ...
        ...
    relations:
        Humans:
            foreignAlias: Dogs
            class: Human
            ref_class: Human_Dogs
Human_Dogs:
    columns: 
        human_id:
            type: int(4)
            primary: true
        dog_id: 
            type: int(4)
            primary: true
    relations:
        Human:
            foreignAlias: Human_Dogs
        Dog:
            foreignAlias: Human_Dogs

那将是 file.yml,所以现在您可以从该文件生成数据库。你能做到这一点的方式很大程度上取决于你正在使用的框架或程序。无论如何,这里有一个简单的方法可以在 PHP + Doctrine 中做到这一点:

<?php 
$options = array(
      'packagesPrefix'  =>  'Plugin',
      'baseClassName'   =>  'MyDoctrineRecord',
      'suffix'          =>  '.php'
);

Doctrine_Core::generateModelsFromYaml('/path/to/file.yml', '/path/to/model', $options);
?>

通过正确的配置,您可以自动生成 id 字段。

在此链接中有一个教程->文档

我希望这可以帮助你!

于 2010-04-14T21:27:27.583 回答