两个关系“有一个”参考同一张表 - Kohana 3.1 ORM
我有带有两个外键的表 messages
:user_id_from
和 user_id_to
。 我需要从表 users
中检索具有“has one”关系的两行。 我怎样才能做到这一点?
I have table messages
with two foreign key: user_id_from
and user_id_to
.
I need to retrieve both rows from table users
with "has one" relation.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚注意到这实际上是一种属于关系。所以代码应该如下...
user_from 和 user_to 可以更改为您想要访问它们的方式。
即
和
I just noticed this is actually a belongs to relationship. So the code should be as follows...
The user_from and user_to can be changed to however you want to access them.
i.e.
and