Laravel 5在两列上有很多关系

时间:2015-04-20 15:17:21

标签: php laravel eloquent 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();

4 个答案:

答案 0 :(得分:20)

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

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

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();

答案 1 :(得分:6)

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

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

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

其中两列必须匹配。

答案 2 :(得分:0)

如果由于Google而有人像我一样登陆这里: 由于merge()(如上文建议)和push()(如here)都不允许进行快速加载(以及其他不错的关系功能),因此讨论仍在进行中,并在最近的线程中继续进行,请参阅此处:Laravel Eloquent Inner Join on Self Referencing Table

我提出了一种解决方案there,欢迎提出任何其他想法和贡献。

答案 3 :(得分:0)

我更喜欢这样:

public function userRelations()
{
    return UserRelation::where(function($q) {
        /**
         * @var Builder $q
         */
        $q->where('user_id',$this->id)
            ->orWhere('related_user_id',$this->id);
    });
}

public function getUserRelationsAttribute()
{
    return $this->userRelations()->get();
}