Example #1
0
 public function getRooms()
 {
     return $this->hasMany(room::className(), ['building_id' => 'id']);
 }
Example #2
0
 public function getRoom()
 {
     return $this->hasOne(room::className(), ['id' => 'room_id']);
 }