示例#1
0
 public AggregationMethodFactory MakeLastEver(
     StatementExtensionSvcContext statementExtensionSvcContext,
     ExprLastEverNode exprLastEverNode,
     Type type)
 {
     return(new AggregationMethodFactoryLastEver(exprLastEverNode, type));
 }
 public AggregationMethodFactoryLastEver(ExprLastEverNode parent, Type childType)
 {
     _parent = parent;
     ResultType = childType;
 }