Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getOrder()
 {
     return $this->hasOne(Order::className(), ['id' => 'order_id']);
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getYesOrders()
 {
     return $this->hasMany(Order::className(), ['customer_id' => 'id']);
 }