コード例 #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']);
 }