コード例 #1
0
ファイル: Post.php プロジェクト: pramana08/app-cms
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPostComments()
 {
     return $this->hasMany(PostComment::className(), ['comment_post_id' => 'id']);
 }
コード例 #2
0
ファイル: UserMeta.php プロジェクト: grutabow/getyii
 public function getComment()
 {
     return $this->hasOne(PostComment::className(), ['id' => 'target_id']);
 }