繁体   English   中英

表和列名称的命名策略(Doctrine ORM)

[英]Naming Strategy for table and column names (Doctrine ORM)

有一种命名策略可以照顾到Doctrine ORM中的表和列名的映射吗?

现在,所有名称都是通过实体类中的注释指定的,例如

<?php

namespace App\Entity;

use DateTimeInterface;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity()
 * @ORM\Table(name="role")
 */
class Role
{
    /**
     * @ORM\Id()
     * @ORM\Column(name="id", type="guid")
     * @ORM\GeneratedValue(strategy="NONE")
     * @var string
     */
    private $id;

    /**
     * @ORM\Column(name="created_at", type="datetime")
     * @var \DateTimeImmutable
     */
    private $createdAt;

    /**
     * @ORM\Column(name="created_by", type="string")
     * @var string
     */
    private $createdBy;

    // [..]

}

表和列的名称均为snake_case而类和属性的名称均为camelCase

我试图删除实体类中的表名和列名声明,并通过配置提供了命名策略,并尝试通过以下两种方式进行设置。

<?php

use Doctrine\ORM\Mapping\UnderscoreNamingStrategy;

return [
    'doctrine' => [
        'connection' => [
            // [..]
        ],
        'driver' => [
            // [..]
        ],
        'annotation' => [
            // [..]
        ],
        'entity_managers' => [
            'default' => [
                'naming_strategy' => UnderscoreNamingStrategy::class,
            ],
        ],
        'orm' => [
            'naming_strategy' => UnderscoreNamingStrategy::class,
        ],
    ],
];

尝试检索实体时,将引发错误。

Doctrine\DBAL\Exception\InvalidFieldNameException: An exception occurred while executing &#039;SELECT t0.id AS id_1, t0.createdAt AS createdAt_2, t0.createdBy AS createdBy_3, t0.updatedAt AS updatedAt_4, t0.updatedBy AS updatedBy_5, t0.name AS name_6, t0.desc AS desc_7, t0.isCore AS isCore_8 FROM Role t0&#039;:

SQLSTATE[42S22]: Column not found: 1054 Unknown column &#039;t0.createdAt&#039; in &#039;field list&#039; in file C:\project\path\vendor\doctrine\dbal\lib\Doctrine\DBAL\Driver\AbstractMySQLDriver.php on line 60

经过一些研究和试验,我得到了以下解决方案,可以在Zend Expressive应用程序中工作。

doctrine.local.php中配置命名策略

<?php

declare(strict_types = 1);

use Doctrine\ORM\Mapping\UnderscoreNamingStrategy;

return [
    'doctrine' => [
        'connection' => [
            // [..]
        ],
        'driver' => [
            // [..]
        ],
        'annotation' => [
            // [..]
        ],
        'configuration' => [
            'orm_default' => [
                'naming_strategy' => UnderscoreNamingStrategy::class,
            ],
        ],
    ],
];

为命名策略实施工厂

<?php

namespace App;

use Interop\Container\ContainerInterface;
use Zend\ServiceManager\Factory\FactoryInterface;

class NamingStrategyFactory implements FactoryInterface
{
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
    {
        return new $requestedName();
    }
}

ConfigProvider.php中注册工厂

<?php

declare(strict_types = 1);

namespace App;

use Doctrine\ORM\Mapping\UnderscoreNamingStrategy;

class ConfigProvider
{
    public function __invoke()
    {
        return [
            'dependencies' => $this->getDependencies(),
        ];
    }

    public function getDependencies(): array
    {
        return [
            'invokables' => [
            ],
            'factories' => [
                // [..]
                UnderscoreNamingStrategy::class => NamingStrategyFactory::class,
            ],
        ];
    }

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM