Symfony:以编程方式添加外键
我有一个非常糟糕的数据库结构,它本身没有声明外键关系,我必须使用这个数据库作为 Symfony 的模型。
由于某些原因,我无法更改此数据库,必须按原样使用它。另外,不想编辑 YML 文件。
如何直接在 symfony 的 php 类中声明外键?最好是在我重新生成模型时不会被覆盖的类。
搜索了这个但找不到答案。
I have a pretty bad database structure to work with, that doesn't have foreign keys relationships declared in itself, and I have to use this database as the model with Symfony.
For some reasons, I cannot alter this database, have to work with it as it is. Also, don't want to edit YML files.
How can I declare foreign keys directly in the symfony's php classes? Prefferably classes that won't be overwriten if I regenerate the model.
Searched for this but couldn't find an answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
教义。
我在这里找到了答案: http://www .doctrine-project.org/projects/orm/1.2/docs/manual/defining-models/en
必须使用 hasMany 或 hasOne 关系重写 BaseClass 的 setUp() 方法。
Doctrine.
I found the answer here: http://www.doctrine-project.org/projects/orm/1.2/docs/manual/defining-models/en
Have to override the BaseClass's setUp() method with hasMany or hasOne relations.