如何在连接后获取具有相同列名的属性(带有 Propel 的 Symfony 框架)?
我有两个表:
Table1:
- id
- attr1
- fk1(Table2)
- fk2(Table2)
Table2:
- id
- name
我想在 fk1 和 fk2 上将 Table1 与 Table2 连接起来。我怎样才能完成这两个连接,然后从 Table2 中获取两个名称属性。 我想使用 Table1Query 而不是 Table1Peer 来完成此操作。
I have two tables:
Table1:
- id
- attr1
- fk1(Table2)
- fk2(Table2)
Table2:
- id
- name
I want to join Table1 with Table2 on fk1 and fk2. How can I do this two joins and after that get both name attributes from Table2.
I would like to do it with Table1Query rather than Table1Peer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看我对这个问题的回答:在 Propel 中命名生成的函数
由于您有两个指向同一个表的外键,因此您需要利用“foreign-key”元素上的“phpName”属性。
Take a look at my answer to this question: Naming Generated Functions in Propel
Since you have two foreign keys that point to the same table, you need to utilize the "phpName" attribute on the "foreign-key" element.