sql >> Database >  >> NoSQL >> MongoDB

Voorwaardelijke projectie in mongodb met behulp van c# driver

Dit is hoe ik het zou aanpakken. Om de groeps-id "artefact" te verwijderen, moet u de groepsuitvoer projecteren en de id niet opnemen.

db.getCollection('MyClass').aggregate( [
{$unwind: '$Class'}, 
{ $project : {  Name : 1 , 
                Occupation : 1, 
                Class : {
                    ClassType:1, 
                    Professors:{
                        $cond: {
                            if: { $eq: ["$Class.ClassType", "English"] },
                            then: [],
                            else: "$Class.Professors"
                                }
                    }
                }
            } 
    },
{$group: {
    _id: '$_id',
    Name: {$first: '$Name'},
    Occupation: {$first: '$Occupation'},
    Class: {$push: '$Class'}
}},

] )




  1. MongoDB-hostingopties nu de Heroku mLab-add-on wordt verwijderd

  2. Hoe vraag ik naar verschillende waarden in Mongoose?

  3. Mongo DB:kan geen sharding-cluster maken in Ubuntu

  4. Herstel redis-gegevens van slave naar master