sql >> Databáze >  >> NoSQL >> MongoDB

jarní data mongodb skupina podle

Změňte TypedAggregation část níže a přidejte students pole na StudentResults

 TypedAggregation<Student> studentAggregation = Aggregation.newAggregation(Student.class,
               Aggregation.group("firstName").
               push("$$ROOT").as("students"));

$$ROOT vloží celý dokument.

Aktualizace:

TypedAggregation<Student> studentAggregation = Aggregation.newAggregation(Student.class,
              Aggregation.group("firstName").
                 push(new BasicDBObject
                       ("_id", "$_id").append
                       ("firstName", "$firstName").append
                       ("lastName", "$lastName")).as("students"));



  1. Autentizace aplikací NodeJS a MongoDB pomocí JWT

  2. Jak provést addToSet pomocí oficiálního ovladače Go?

  3. Přehled WiredTiger Storage Engine pro MongoDB

  4. Jak vymazat Heroku Redis?