16 instantiations of Function
System.Data (16)
fx\src\data\System\Data\Filter\FunctionNode.cs (16)
28new Function("Abs", FunctionId.Abs, typeof(object), true, false, 1, typeof(object), null, null), 29new Function("IIf", FunctionId.Iif, typeof(object), false, false, 3, typeof(object), typeof(object), typeof(object)), 30new Function("In", FunctionId.In, typeof(bool), false, true, 1, null, null, null), 31new Function("IsNull", FunctionId.IsNull, typeof(object), false, false, 2, typeof(object), typeof(object), null), 32new Function("Len", FunctionId.Len, typeof(int), true, false, 1, typeof(string), null, null), 33new Function("Substring", FunctionId.Substring, typeof(string), true, false, 3, typeof(string), typeof(int), typeof(int)), 34new Function("Trim", FunctionId.Trim, typeof(string), true, false, 1, typeof(string), null, null), 36new Function("Convert", FunctionId.Convert, typeof(object), false, true, 1, typeof(object), null, null), 37new Function("DateTimeOffset", FunctionId.DateTimeOffset, typeof(DateTimeOffset), false, true, 3, typeof(DateTime), typeof(int), typeof(int)), 39new Function("Max", FunctionId.Max, typeof(object), false, false, 1, null, null, null), 40new Function("Min", FunctionId.Min, typeof(object), false, false, 1, null, null, null), 41new Function("Sum", FunctionId.Sum, typeof(object), false, false, 1, null, null, null), 42new Function("Count", FunctionId.Count, typeof(object), false, false, 1, null, null, null), 43new Function("Var", FunctionId.Var, typeof(object), false, false, 1, null, null, null), 44new Function("StDev", FunctionId.StDev, typeof(object), false, false, 1, null, null, null), 45new Function("Avg", FunctionId.Avg, typeof(object), false, false, 1, null, null, null),
4 references to Function
System.Data (4)
fx\src\data\System\Data\Filter\AggregateNode.cs (1)
67throw ExprException.UndefinedFunction(Function.FunctionName[(Int32)aggregateType]);
fx\src\data\System\Data\Filter\FunctionNode.cs (3)
27private static readonly Function[] funcs = new Function[] { 510Function f = funcs[info];