我有以下Eloquent ORM查询。
$products2 = Product::with('metal', 'metal.fixes', 'metal.fixes.currency')
->where('metal_id', '=', 1)
->get()->toArray();
此查询的输出如下:
我希望进一步缩小查询范围,仅显示fixes.currency_id = 1
。
$products2 = Product::with('metal', 'metal.fixes', 'metal.fixes.currency')
->where('metal_id', '=', 1)
->where('metal.fixes.currency_id', '=', 1)
->get()->toArray();
有人可以帮我解决这个问题,因为我收到了以下错误:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'metal.fixes.currency_id'
in 'where clause' (SQL: select * from `products` where `metal_id` = ?
and `metal`.`fixes`.`currency_id` = ?) (Bindings: array ( 0 => 1, 1 => 1, ))
在Rob Gordijn的帮助下解决:
$products2 = Product::with(array(
'metal',
'metal.fixes.currency',
'metal.fixes' => function($query){
$query->where('currency_id', '=', 1);
}))
->where('common', '=', 1)
->where('metal_id', '=', 1)
->get()->toArray();
答案 0 :(得分:2)
您正在寻找“渴望加载限制”:http://laravel.com/docs/eloquent#querying-relations
<?php
$products2 = Product::with(array('metal', 'metal.fixes', 'metal.fixes.currency' => function($query){
$query->where('currency_id', '=', 1);
}))
->where('metal_id', '=', 1)
->get()->toArray();