关系对象上的 Laravel 位置

我正在用 Laravel 5.0开发一个 web API,但是我不确定我正在尝试构建的具体查询。

我的课程如下:

class Event extends Model {


protected $table = 'events';
public $timestamps = false;


public function participants()
{
return $this->hasMany('App\Participant', 'IDEvent', 'ID');
}


public function owner()
{
return $this->hasOne('App\User', 'ID', 'IDOwner');
}
}

还有

class Participant extends Model {


protected $table = 'participants';
public $timestamps = false;


public function user()
{
return $this->belongTo('App\User', 'IDUser', 'ID');
}


public function event()
{
return $this->belongTo('App\Event', 'IDEvent', 'ID');
}
}

现在,我要得到所有的事件,与一个特定的参与者。 我试着说:

Event::with('participants')->where('IDUser', 1)->get();

where条件适用于 Event,而不适用于 Participants:

Participant::where('IDUser', 1)->event()->get();

我知道我可以这样写:

$list = Participant::where('IDUser', 1)->get();
for($item in $list) {
$event = $item->event;
// ... other code ...
}

但是向服务器发送如此多的查询似乎效率不高。

使用 Laravel5和 Eloquent 通过模型关系执行 where的最佳方式是什么?

276159 次浏览

处理关系的正确语法是:

Event::whereHas('participants', function ($query) {
return $query->where('IDUser', '=', 1);
})->get();

这将返回其中参与者的用户 ID 为1的 Events。如果参与者的用户 ID 不是1,则不会返回事件。

详情请浏览 https://laravel.com/docs/5.8/eloquent-relationships#eager-loading

@ Cermbo 的回答与这个问题无关。在这个答案中,如果每个 Event都有 'participants'IdUser1,那么 Laravel将给你所有的 Events

但是,如果你想得到所有 Events和所有 'participants',只要所有 'participants'IdUser为1,那么你应该这样做:

Event::with(["participants" => function($q){
$q->where('participants.IdUser', '=', 1);
}])

注意:

where中使用表名,而不是模型名。

使用以下代码:

return Deal::with(["redeem" => function($q){
$q->where('user_id', '=', 1);
}])->get();

对于多个连接,可以使用如下代码:

$userId = 44;
Event::with(["owner", "participants" => function($q) use($userId ){
$q->where('participants.IdUser', '=', 1);
//$q->where('some other field', $userId );
}])

我在 BaseModel 中创建了一个自定义查询范围(我的所有模型都扩展了这个类) :

/**
* Add a relationship exists condition (BelongsTo).
*
* @param  Builder        $query
* @param  string|Model   $relation   Relation string name or you can try pass directly model and method will try guess relationship
* @param  mixed          $modelOrKey
* @return Builder|static
*/
public function scopeWhereHasRelated(Builder $query, $relation, $modelOrKey = null)
{
if ($relation instanceof Model && $modelOrKey === null) {
$modelOrKey = $relation;
$relation   = Str::camel(class_basename($relation));
}


return $query->whereHas($relation, static function (Builder $query) use ($modelOrKey) {
return $query->whereKey($modelOrKey instanceof Model ? $modelOrKey->getKey() : $modelOrKey);
});
}

你可以在很多情况下使用它,例如:

Event::whereHasRelated('participants', 1)->isNotEmpty(); // where has participant with id = 1

此外,您可以尝试省略关系名称并传递只是模型:

$participant = Participant::find(1);
Event::whereHasRelated($participant)->first(); // guess relationship based on class name and get id from model instance

[ OOT ]

有点 OOT,但这个问题是与我的问题最接近的话题。

下面是一个示例,如果您想显示事件,其中 全部参与者满足某些要求。比方说,所有参与者都有 全额付款的事件。因此,它不会返回有一个或多个参与者没有完全支付的事件。

只需使用其他两个状态的 whereDoesntHave即可。

让我们假设状态根本没有支付[等式: 1] ,支付了一部分[等式: 2] ,全额支付[等式: 3]

Event::whereDoesntHave('participants', function ($query) {
return $query->whereRaw('payment = 1 or payment = 2');
})->get();

在 Laravel 5.8-7. x 上测试

对于幼虫8用这个代替

Event::whereHas('participants', function ($query) {
$query->where('user_id', '=', 1);
})->get();

这将返回只有用户 id 为1的参与者具有该事件关系的事件,

对于幼虫8.57 +

Event::whereRelation('participants', 'IDUser', '=', 1)->get();