原则:使用链接表将模型与其自身相关联,例如“此事件与以下其他事件相关”

发布于 2024-10-09 13:11:07 字数 585 浏览 3 评论 0原文

因此,在英语中,这种关系听起来就像“此事件与以下其他事件相关”。

我的第一反应是创建一个 EventEvent 模型,其中包含 first_event_id 字段和 second_event_id 字段。然后,我将在 Event 模型中定义以下两个关系:

$this->hasMany('Event as FirstRelatedEvents', array('local' => 'first_event_id', 'foreign' => 'second_event_id', 'refClass' => 'EventEvent'));
$this->hasMany('Event as SecondRelatedEvents', array('local' => 'second_event_id', 'foreign' => 'first_event_id', 'refClass' => 'EventEvent'));

但我宁愿不必在 Event 模型上使用两个关系。有更好的方法吗?

So in English, the relationship would sound like "This event is related to to the following other events".

My first instinct is to create an EventEvent model, with a first_event_id field and a second_event_id field. Then I would define the following two relationships in the Event model:

$this->hasMany('Event as FirstRelatedEvents', array('local' => 'first_event_id', 'foreign' => 'second_event_id', 'refClass' => 'EventEvent'));
$this->hasMany('Event as SecondRelatedEvents', array('local' => 'second_event_id', 'foreign' => 'first_event_id', 'refClass' => 'EventEvent'));

But I would rather not have to use two relationships on the Event model. Is there a better way to do this?

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

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

发布评论

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

评论(1

烟酒忠诚 2024-10-16 13:11:07

我在手册中找到了它: 平等嵌套关系

I found it in the manual: Equal Nest Relations

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