Laravel 5 在两列上有很多关系

新手上路,请多包涵

是否可以在两列上建立 hasMany 关系?

我的表有两列, user_idrelated_user_id

我希望我的关系匹配任何一列。

在我的模型中我有

public function userRelations()
{
    return $this->hasMany('App\UserRelation');
}

其中运行查询: select * from user_relations where user_relations.user_id in ('17', '18')

我需要运行的查询是:

 select * from user_relations where user_relations.user_id = 17 OR user_relations.related_user_id = 17

编辑:

我正在使用预加载,我认为这会影响它的工作方式。

 $cause = Cause::with('donations.user.userRelations')->where('active', '=', 1)->first();

原文由 CharliePrynn 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 225
2 个回答

我认为不可能完全按照你的要求去做。

我认为您应该将它们视为单独的关系,然后在模型上创建一个新方法来检索两者的集合。

 public function userRelations() {
    return $this->hasMany('App\UserRelation');
}

public function relatedUserRelations() {
    return $this->hasMany('App\UserRelation', 'related_user_id');
}

public function allUserRelations() {
    return $this->userRelations->merge($this->relatedUserRelations);
}

通过这种方式,您仍然可以在模型上获得预先加载和关系缓存的好处。

 $cause = Cause::with('donations.user.userRelations',
        'donations.user.relatedUserRelations')
    ->where('active', 1)->first();

$userRelations = $cause->donations[0]->user->allUserRelations();

原文由 Collin James 发布,翻译遵循 CC BY-SA 3.0 许可协议

Composships 在 Laravel 5 的 Eloquent 中增加了对多列关系的支持。

它允许您使用以下语法指定关系:

 public function b()
{
    return $this->hasMany('B', ['key1', 'key2'], ['key1', 'key2']);
}

两列必须匹配的地方。

原文由 topclaudy 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏