为什么Laravel/Eloquent不能将JOIN用于EagerLoad?
<?php
class Cat extends Eloquent {
public function user() {
return $this->belongsTo('User');
}
}
class User extends Eloquent {
public function cats() {
return $this->hasMany('Cat');
}
}
现在:
$cats = Cat::with('user')->get();
执行 2 个查询:
select * from `cats`
select * from `users` where `users`.`id` in ('1', '2', 'x')
为什么它不能做:
select * from cats inner join users on cats.user_id = users.id
对于那些说表中有两个id列的人来说,使用别名可以很容易地避免:
select
c.id as cats__id,
c.name as cats__name,
c.user_id as cats__user_id,
b.id as users__id,
b.name as users__name
from cats c
inner join users b on b.id = c.user_id
更新
有人指出,Eloquent不知道模型中表的列,但我想他们可以提供一种在模型中定义它们的方法,这样它就可以使用别名并执行正确的连接,而不是额外的查询。