コード例 #1
0
ファイル: Post.php プロジェクト: mahmoodkhoeini/yii2cms
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getComments()
 {
     return $this->hasMany(Comment::className(), ['post_id' => 'id']);
 }
コード例 #2
0
ファイル: Posts.php プロジェクト: asadovkamran/etap_backup
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getComment()
 {
     return $this->hasOne(Comment::className(), ['id' => 'id']);
 }