Esempio n. 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCity()
 {
     return $this->hasMany(City::className(), ['country_code' => 'code']);
 }
Esempio n. 2
0
 public function getCity()
 {
     return $this->hasOne(City::className(), ['Id' => 'cityId']);
 }
Esempio n. 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCityTo()
 {
     return $this->hasOne(City::className(), ['code' => 'city_to_code']);
 }