コード例 #1
0
ファイル: Estudiantes.php プロジェクト: kachomanic/covan
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getMatriculas()
 {
     return $this->hasMany(Matricula::className(), ['codEstudiante' => 'codEstudiante']);
 }
コード例 #2
0
ファイル: Detallemat.php プロジェクト: kachomanic/covan
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdMatricula0()
 {
     return $this->hasOne(Matricula::className(), ['idMatricula' => 'idMatricula']);
 }