我有这个查询
$res = propertyDetail::find()
->joinWith('propertyImages')
->all();
$res = $res->where(['pkPropertyIDPrimary' => 1]);
我收到此错误:
调用成员函数where()on array
此查询包含属性Image和属性详细信息记录。现在我想在这个动态中添加一个where子句。
我该怎么做?
答案 0 :(得分:1)
你需要这样做,
$res = propertyDetail::find()
->joinWith('propertyImages');
$res = $res->where(['pkPropertyIDPrimary' => 1])->all();