Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBlogCatPos()
 {
     return $this->hasMany(BlogCatPos::className(), ['category_id' => 'id']);
 }
Example #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBlogCatPos()
 {
     return $this->hasMany(BlogCatPos::className(), ['post_id' => 'id'])->where("isdel=0");
 }