コード例 #1
0
ファイル: Items.php プロジェクト: quato/yii2-articles
 public function getArticleAttachments()
 {
     return $this->hasMany(Attachments::className(), ['itemid' => 'id']);
 }
コード例 #2
0
ファイル: Items.php プロジェクト: cinghie/yii2-articles
 /**
  * Return Attachments
  * @return Attachments
  */
 public function getAttachments()
 {
     return $this->hasMany(Attachments::className(), ['itemid' => 'id'])->from(Attachments::tableName() . ' AS attach');
 }