sql >> Database teknologi >  >> NoSQL >> MongoDB

Laravel 5 Veltalende sum af multiplicerede kolonner for mongo DB

Jeg tror på aggregeringsoperatorer som sum forvente nøjagtigt kolonnenavn som en parameter. Du kan prøve at project multiplikationen først, summer derefter resultatet:

DB::connection($this->MongoSchemaName)
    ->collection($this->InvoicesTable)
    ->where('ContactID', (int)$customer->ContactID)
    ->project([
        'ContactID' => 1, 
        'TotalInBaseCurrency' => ['$multiply' => ['$Total', '$CurrencyRate']]
    ])
    ->sum('TotalInBaseCurrency')

eller brug aggregering direkte:

DB::connection($this->MongoSchemaName)
    ->collection($this->InvoicesTable)
    ->raw(function($collection) use ($customer){
        return $collection->aggregate([
            ['$match' => [
                    'ContactID' => (int)$customer->ContactID,
                    'Type' => 'PAYMENT'
                ]
            ],
            ['$group' => [
                '_id' => '$ContactID',
                'TotalInBaseCurrency' => [
                        '$sum' => ['$multiply' => ['$Total', '$CurrencyRate']]
                    ]
                ]
            ]
        ]);
    })



  1. Hvordan designer jeg et MongoDB-skema til en Twitter-artikelaggregator

  2. MongoDB på Android

  3. Kan ikke oprette forbindelse til Redis fra Docker

  4. Søg i hele samlingen (mongodb) ved hjælp af nodejs