sql >> Database >  >> NoSQL >> MongoDB

Laravel 5 Welsprekende som van vermenigvuldigde kolommen voor mongo DB

Ik geloof dat aggregatie-operators zoals sum verwacht de exacte kolomnaam als parameter. Je kunt proberen te project eerst vermenigvuldigen, dan het resultaat optellen:

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

of gebruik aggregatie rechtstreeks:

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. Celery probeert verbinding te maken met de verkeerde makelaar

  2. Hoe om te gaan met circulaire documenten in MongoDB/DynamoDB?

  3. mongo shell-script laat me gebruik <database> niet opnemen

  4. Hoe db.eval() aanroepen via mangoest?