Answer the question
In order to leave comments, you need to log in
Yii2 relations and GridView?
Such a question, it is necessary to display a list of users with email and full name in the GridView with a minimum number of requests. Email in user, full name in profile.
In User I added a link like this
public function getProfile()
{
return $this->hasOne(Profile::className(), ['user_id' => 'id']);
}
public function getUser()
{
return $this->hasOne(User::className(), ['id' => 'user_id']);
}
Answer the question
In order to leave comments, you need to log in
Read about with, around here www.yiiframework.com/doc-2.0/guide-db-active-recor...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question