php – Laravel 5在两列上有很多关系

前端之家收集整理的这篇文章主要介绍了php – Laravel 5在两列上有很多关系前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在两列上建立hasMany关系?

我的表有两列,user_id和related_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();
我认为不可能完全按照你的要求去做.

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

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();
原文链接:https://www.f2er.com/laravel/131312.html

猜你在找的Laravel相关文章