Count subdocuments using MongoDB C# driver
I want to count and sum all posts in Items. When i query my collection with: GetCollection().Find(p => p.Type == "Test") i receive this: [ { "Type": "Test", "Items": [ { "Name": "123", "Id":"123" }, { "Name": "123", "Id":"123" }…