コード例 #1
0
ファイル: Reviews.php プロジェクト: nurastana/familyclinickz
 public function getImage()
 {
     return $this->hasOne(Image::className(), ['primaryKey' => 'id'])->andWhere(['model' => self::className()]);
 }
コード例 #2
0
ファイル: Service.php プロジェクト: nurastana/familyclinickz
 protected function getImages()
 {
     return $this->hasMany(Image::className(), ['primaryKey' => 'id'])->andFilterWhere(['model' => self::className()]);
 }