Esempio n. 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAutos()
 {
     return $this->hasMany(Auto::className(), ['idcat' => 'id'])->orderBy(['priceT' => SORT_ASC]);
 }
Esempio n. 2
0
File: Drivers.php Progetto: t4le/365
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCar0()
 {
     return $this->hasOne(Auto::className(), ['id' => 'car']);
 }
Esempio n. 3
0
File: Autocat.php Progetto: t4le/365
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAutos()
 {
     return $this->hasMany(Auto::className(), ['idcat' => 'id']);
 }