Ist das in Ordnung?
var Total = _collection.AsQueryable().Where(x => x.ClientId == 2).Sum(x => x.Cash);
EDIT:Aggregat ist hier übertrieben, aber es würde vielleicht so gehen:
var x = MongoCollection.Aggregate()
.Group(
doc => doc.clientId,
group => new
{
clientId = group.Key,
Total = group.Sum(y => y.sum)
}
).ToList().FirstOrDefault(c => c.clientId == 2).Total;
Die Aggregation wird in Db ausgeführt, bis sie zu List()
geht