コード例 #1
0
ファイル: Continents.php プロジェクト: soodsse/YII2demo
 public function getJackpotDetails()
 {
     return $this->hasMany(JackpotDetails::className(), ['continent' => 'code']);
 }
コード例 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getJackpot()
 {
     return $this->hasOne(JackpotDetails::className(), ['id' => 'jackpot_id']);
 }
コード例 #3
0
ファイル: Countries.php プロジェクト: soodsse/YII2demo
 public function getJackpotDetailsCode()
 {
     return $this->hasMany(JackpotDetails::className(), ['countryid' => 'code']);
 }