अपना TypedAggregation
बदलें नीचे के भाग में जोड़ें और students
को जोड़ें StudentResults
. के लिए फ़ील्ड
TypedAggregation<Student> studentAggregation = Aggregation.newAggregation(Student.class,
Aggregation.group("firstName").
push("$$ROOT").as("students"));
$$ROOT पूरे दस्तावेज़ को आगे बढ़ाएगा।
अपडेट करें:
TypedAggregation<Student> studentAggregation = Aggregation.newAggregation(Student.class,
Aggregation.group("firstName").
push(new BasicDBObject
("_id", "$_id").append
("firstName", "$firstName").append
("lastName", "$lastName")).as("students"));