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