public AggregationRequest SortBy(SortedField field, int max)
 {
     _sortby.Add(field);
     _sortByMax = max;
     return(this);
 }
 public AggregationRequest SortBy(SortedField field)
 {
     _sortby.Add(field);
     return(this);
 }