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

MongoDB Aggrega la funzione in C#

Creare pipeline di aggregazione è un po' complicato.

Prova:

var pipeline = new BsonDocument[] {
    new BsonDocument{ { "$sort", new BsonDocument("_id", 1) }},
    new BsonDocument{{"$unwind", "$scores"}},
    new BsonDocument{{"$group", new BsonDocument{
                {"_id", "$_id"},
                {"lowscore",new BsonDocument{
                        {"$min","$scores.score"}}
                }}
        }}
};

var result = collection.Aggregate<BsonDocument> (pipeline).ToListAsync();

Se esegui pipeline.ToJson() , otterrai la seguente stringa equivalente JSON che è la stessa della query MongoShell originale e testata.

[
    {
        "$sort": {
            "_id": 1
        }
    },
    {
        "$unwind": "$scores"
    },
    {
        "$group": {
            "_id": "$_id",
            "lowscore": {
                "$min": "$scores.score"
            }
        }
    }
]