0
我有下面的代碼不工作作爲exepcted。在模型中指定如何使用yii2活動記錄和關係獲取數據?
關係:
public function getShift() {
return $this->hasOne(Shift::className(), ['id' => 'shift_id']);
}
public function getShiftName() {
return $this->shift->name;
}
查詢:
$job_position = JobPositions::find()
->innerJoinWith(['shift'])
->where('month(date) = month(curdate())')
->one();
它給我的上job_position表中的數據,而不是轉移表。如何獲取移位表的數據?