Example #1
0
 public Aggregate <T, DateTime, TZ> DateHistogram <TZ>(Expression <Func <T, DateTime> > property, DateBreaks breaks, TZ child)
 {
     return(new DateHistogramAggregate <T, TZ>(Property <DateTime> .Create(property), breaks, child));
 }
 internal DateHistogramAggregate(Property property, DateBreaks dateBreaks, TY child)
 {
     Property   = property;
     DateBreaks = dateBreaks;
     Child      = child;
 }