Guest User

Untitled

a guest
Oct 18th, 2017
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. {
  2. "_id" : 1,
  3. "UserName" : "1",
  4. "Description" : "abc",
  5. "UserCode" : "abc",
  6. "Email" : "abc@gmail.com",
  7. "PhoneNo" : 123,
  8. "Address" : null,
  9. "Locations" : [ ]
  10. }
  11.  
  12. var aggregate = collection.Aggregate().Group(new BsonDocument { { "_id", "$_id" }, { "count", new BsonDocument("$sum", 1) } });
  13. var results = aggregate.ToList();
Add Comment
Please, Sign In to add comment