Esempio n. 1
0
 public NestedAggregationDescriptor <T> Path(Expression <Func <T, object> > path)
 {
     this._Nested       = new NestedAgg();
     this._Nested._Path = path;
     return(this);
 }
Esempio n. 2
0
 public NestedAggregationDescriptor <T> Path(string path)
 {
     this._Nested       = new NestedAgg();
     this._Nested._Path = path;
     return(this);
 }