hasMany(CustomerOrder::className(), ['customer_id' => '_id']); } public function getFile() { return $this->hasOne(CustomerFile::className(), ['_id' => 'file_id']); } /** * @inheritdoc * @return CustomerQuery */ public static function find() { return new CustomerQuery(get_called_class()); } }