Ejemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCounty()
 {
     return $this->hasOne(County::className(), ['id' => 'county_id']);
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCounties()
 {
     return $this->hasMany(County::className(), ['state_id' => 'id']);
 }