示例#1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCity()
 {
     return $this->hasOne(GeobaseCity::className(), ['id' => 'city_id']);
 }
示例#2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getGeobaseCity()
 {
     return $this->hasOne(GeobaseCity::className(), ['id' => 'geobase_city_id'])->orderBy(['name' => SORT_ASC]);
 }