コード例 #1
0
ファイル: Product.php プロジェクト: baranov-nt/some-2
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSales()
 {
     return $this->hasMany(Sale::className(), ['product_id' => 'id']);
 }
コード例 #2
0
ファイル: SalePhoto.php プロジェクト: dench/resistor
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSale()
 {
     return $this->hasOne(Sale::className(), ['id' => 'sale_id']);
 }
コード例 #3
0
ファイル: Object.php プロジェクト: dench/resistor
 public function getSale()
 {
     return $this->hasOne(Sale::className(), ['object_id' => 'id'])->orderBy(['sale.id' => SORT_DESC]);
 }