Symfony:以编程方式添加外键

发布于 2024-11-16 11:02:20 字数 186 浏览 0 评论 0原文

我有一个非常糟糕的数据库结构,它本身没有声明外键关系,我必须使用这个数据库作为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦在深巷 2024-11-23 11:02:20

教义。

我在这里找到了答案: 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文