Ejemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPost()
 {
     return $this->hasOne(Post::className(), ['id' => 'post_id']);
 }
Ejemplo n.º 2
0
 /**
  *
  *
  * @return mixed
  */
 public function getPostCount()
 {
     return $this->hasMany(Post::className(), ['category_id' => 'id'])->count();
 }