最佳答案
我正在用 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
的最佳方式是什么?