Answer the question
In order to leave comments, you need to log in
Yii2 active record. how to correctly compose a search with the with relation?
expression Menu::find()->with('page')
generates a query without attaching page
i.e. fields are selectable only from the
relay menu in the menu indicatedSELECT * FROM `menu`
public function getPage()
{
return $this->hasOne(Page::className(), ['id' => 'page_id']);
}
Menu::find()->joinWith('page')
SELECT `menu`.* FROM `menu` LEFT JOIN `page`
Answer the question
In order to leave comments, you need to log in
It's not entirely clear what the problem is. I think you need joinWith
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question