Esempio n. 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getParticipantes()
 {
     return $this->hasMany(Participante::className(), ['entidad_id' => 'id']);
 }
Esempio n. 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getParticipantes()
 {
     return $this->hasMany(Participante::className(), ['id' => 'participante_id'])->viaTable('taller_has_participante', ['taller_id' => 'id']);
 }