两个关系“有一个”参考同一张表 - Kohana 3.1 ORM

发布于 2024-10-17 10:23:07 字数 150 浏览 2 评论 0原文

我有带有两个外键的表 messagesuser_id_fromuser_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 技术交流群。

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

发布评论

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

评论(1

爱的十字路口 2024-10-24 10:23:07

我刚刚注意到这实际上是一种属于关系。所以代码应该如下...

protected $_belongs_to = array(
    'user_from' => array('model' => 'user', 'foreign_key' => 'user_id_from'),
    'user_to' => array('model' => 'user', 'foreign_key' => 'user_id_to')
);

user_from 和 user_to 可以更改为您想要访问它们的方式。

$message->user_from

$message->user_to

I just noticed this is actually a belongs to relationship. So the code should be as follows...

protected $_belongs_to = array(
    'user_from' => array('model' => 'user', 'foreign_key' => 'user_id_from'),
    'user_to' => array('model' => 'user', 'foreign_key' => 'user_id_to')
);

The user_from and user_to can be changed to however you want to access them.

i.e.

$message->user_from

and

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