我正在尝试将 a2lix TranslationFormBundle ( https://github.com/a2lix/TranslationFormBundle ) 与 Symfony2 项目一起使用。我一直在看文档,特别是在这个演示中:https ://github.com/a2lix/Demo/tree/master/src/A2lix/DemoTranslationBundle
我注意到文档和演示中的所有示例都为每个可翻译实体使用特定的翻译表(最终实体),如在类注释中设置的那样
@Gedmo\TranslationEntity(class="A2lix\DemoTranslationBundle\Entity\ProductGedmoTranslation")
我的想法是只保留一张表,例如 Gedmo Doctrine Extension Translatable 创建和管理的 ext_translations 表。
这是可能的还是 TranslationFormBundle 绝对需要单独的表?有没有人有一个工作的例子?
TIA