Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCity()
 {
     return $this->hasOne(City::className(), ['id' => 'city_id']);
 }
Exemplo n.º 2
0
Arquivo: Prov.php Projeto: kkkiii/gnw
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCities()
 {
     return $this->hasMany(City::className(), ['prov_id' => 'id']);
 }