Eloquent ORM不使用关系laravel获取数据

时间:2015-04-01 10:58:18

标签: php mysql laravel orm eloquent

我是laravel的新手并使用Eloquent ORM。现在的问题是我正在尝试使用与with()函数的关系来获取记录。现在这个问题是eloquent生成并应用正确的查询但不返回任何结果。但是,如果我在mysql上测试相同的生成查询,那么它可以正常工作。

以下是涉及此的两个表:

属性: id,name,locality_id

地点: id,name,type,adjoining

现在上述表格之间的关系是一对多的关系。

物业模型:

protected $table = 'properties';
protected $guarded = array('id');

public function localityAreaAndCity() {

    return $this->belongsTo('Locality','locality_id')
                ->leftjoin('localities as ls', function($join)
                {
                $join->on('localities.id', '=', 'ls.adjoining')
                    ->where('localities.type', '=','area');
                });

                ->select(array('localities.name as localityPrimaryName',
                          'localities.type as localityPrimaryType',
                           'ls.name as localitySecondaryName',
                          'ls.type as localitySecondaryType'));
}

地区模型:

public $timestamps = false;
protected $table = 'localities';
protected $guarded = array('id');
public function properties()
{
    return $this->hasMany('Property');
}

雄辩查询:

$properties = Property::with('localityAreaAndCity')->get();

DB :: getQueryLog()结果:

select `localities`.`name` as `localityPrimaryName`, `localities`.`type` as `localityPrimaryType`, `ls`.`name` as `localitySecondaryName`, `ls`.`type` as `localitySecondaryType` from `localities` left join `localities` as `ls` on `localities`.`id` = `ls`.`adjoining` and `localities`.`type` = ? where `localities`.`id` in (?, ?, ?, ?, ?)

知道我是否在mysql中使用上面提到的查询然后它返回数据但是使用Eloquent ORM它返回NULL。 请帮助..

1 个答案:

答案 0 :(得分:0)

刚刚将locality_id添加到选择中并且工作正常。实际上雄辩的作品就像你有2个带有相关项目的数组并且你想要匹配它们 - 如果其中一个没有外键,那指向另一个中的主键,那你就不能去做。 Eloquent完全一样。

您必须始终选择关系的两个键(很可能是一个模型上的PK和另一个上的FK)。