在 Kohana ORM 中使用同一个表的两个不同外键引用表

发布于 2024-08-03 09:38:02 字数 223 浏览 4 评论 0原文

table user:
|id|name|employee_priority_id|user_priority_id|
table priority:
|id|name|

正如您所看到的,同一个表有两个外部字段。但 Kohana ORM 默认会查找名为priority_id 的字段,该字段不存在。

有没有办法让 Kohana ORM 知道这两个字段是该表的外键。

table user:
|id|name|employee_priority_id|user_priority_id|
table priority:
|id|name|

As you can see, there are two foreign fields to the same table. But Kohana ORM default looks for a field called priority_id, which doesn't exist.

Is there a way to let Kohana ORM know that those two fields are an foreign key to that table.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

泅人 2024-08-10 09:38:02

您可以按照记录使用“别名”@ http://docs.kohanaphp.com/libraries /orm/advanced#aliasingenhancing_the_meaning_of_your_relationships

因此,在您的情况下,您的 User_Model 将是:

class User_Model extends ORM {
    protected $belongs_to = array('employee_priority' => 'priority', 'user_priority' => 'priority');
}

顺便说一句,根据 Kohana 的约定,表名称应该采用复数形式,除非您覆盖 $table_name,例如:

class Priority_Model extends ORM {
    protected $table_name = 'priority';
}

You can use 'aliasing' as documented @ http://docs.kohanaphp.com/libraries/orm/advanced#aliasingenhancing_the_meaning_of_your_relationships

So in your case, your User_Model would be:

class User_Model extends ORM {
    protected $belongs_to = array('employee_priority' => 'priority', 'user_priority' => 'priority');
}

BTW, according to Kohana's convention table names ought to be in plural form unless you override the $table_name, e.g:

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