Acme\UserBundle\Entity\User:
type: entity
table: fos_user id: id:
type: integer
generator:
strategy: AUTO
manyToMany:
groups:
targetEntity: Group
joinTable:
name: fos_user_group
joinColumns:
user_id:
referencedColumnName: id
inverseJoinColumns:
group_id:
referencedColumnName: id
这个文件是user.orm.yml格式但是我想把它当作file_name.orm.xml ....
所以我想将其转换为xml ...
我怎么能这样做?
答案 0 :(得分:1)
您需要在数据库中创建实体(如果它尚不存在),然后是doctrine:mapping:import,它应该为您创建相应的XML
$ php app/console doctrine:mapping:import --force AcmeUserBundle xml
有关更多帮助,请参阅Symfony documentation。