是否可以使用 symfony3 控制台在单个命令中生成实体和相应的 table
Is it possible to generate an entity and the corresponding table in a single command using symfony3 console
我主要是想结合这两个命令:
php bin/console doctrine:generate:entity --entity="BundleName:EntitiyName" --fields="fieldName:fieldType"
php bin/console doctrine:schema:update --force
我知道我可以编写脚本或简单地链接命令,但我想知道 Symfony 是否提供内置解决方案。
我正在使用 Symfony 3.3。
所以在进一步研究之后,这似乎是不可能的。
为了解决这个问题,我创建了一个名为 tentity
(table 和实体)的批处理脚本,然后将其添加到我的路径中:
@echo off
php .\bin\console doctrine:generate:entity %*
php .\bin\console doctrine:schema:update --force
现在我可以简单地做:
tentity --entity="BundleName:EntitiyName" --fields="fieldName:fieldType"
我主要是想结合这两个命令:
php bin/console doctrine:generate:entity --entity="BundleName:EntitiyName" --fields="fieldName:fieldType"
php bin/console doctrine:schema:update --force
我知道我可以编写脚本或简单地链接命令,但我想知道 Symfony 是否提供内置解决方案。
我正在使用 Symfony 3.3。
所以在进一步研究之后,这似乎是不可能的。
为了解决这个问题,我创建了一个名为 tentity
(table 和实体)的批处理脚本,然后将其添加到我的路径中:
@echo off
php .\bin\console doctrine:generate:entity %*
php .\bin\console doctrine:schema:update --force
现在我可以简单地做:
tentity --entity="BundleName:EntitiyName" --fields="fieldName:fieldType"