コード例 #1
0
ファイル: BlogComment.php プロジェクト: funson86/yii2-blog
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBlogPost()
 {
     return $this->hasOne(BlogPost::className(), ['id' => 'post_id']);
 }
コード例 #2
0
ファイル: BlogCatalog.php プロジェクト: funson86/yii2-blog
 public function getPostsCount()
 {
     return $this->count(BlogPost::className(), ['catalog_id' => 'id']);
 }