예제 #1
0
파일: Topic.php 프로젝트: 0ps/simpleforum
 public function getContent()
 {
     return $this->hasOne(TopicContent::className(), ['topic_id' => 'id'])->select(['topic_id', 'content']);
 }
예제 #2
0
파일: Topic.php 프로젝트: abzal1991/itblog
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTopicContent()
 {
     return $this->hasOne(TopicContent::className(), ['topic_id' => 'topic_id']);
 }