Example #1
0
 public AggregateNode(string name) : base(null, name)
 {
     if (null == (this.methodInfo = AggregateNode.LookupFunc(name)))
     {
         throw InvalidExpressionException.UndefinedFunction(name);
     }
 }
Example #2
0
 public AggregateNode(string name)
     : base((ExpressionNode)null, name)
 {
     if ((object)(this.methodInfo = AggregateNode.LookupFunc(name)) == null)
     {
         throw InvalidExpressionException.UndefinedFunction(name);
     }
 }
Example #3
0
 public static bool IsAggregare(string name)
 {
     return(null != (object)AggregateNode.LookupFunc(name));
 }