Exemple #1
0
 public function getContent()
 {
     return $this->hasOne(TopicContent::className(), ['topic_id' => 'id'])->select(['topic_id', 'content']);
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTopicContent()
 {
     return $this->hasOne(TopicContent::className(), ['topic_id' => 'topic_id']);
 }