16 instantiations of Function
System.Data.Common (16)
System\Data\Filter\FunctionNode.cs (16)
23new Function("Abs", FunctionId.Abs, typeof(object), true, false, 1, typeof(object), null, null), 24new Function("IIf", FunctionId.Iif, typeof(object), false, false, 3, typeof(object), typeof(object), typeof(object)), 25new Function("In", FunctionId.In, typeof(bool), false, true, 1, null, null, null), 26new Function("IsNull", FunctionId.IsNull, typeof(object), false, false, 2, typeof(object), typeof(object), null), 27new Function("Len", FunctionId.Len, typeof(int), true, false, 1, typeof(string), null, null), 28new Function("Substring", FunctionId.Substring, typeof(string), true, false, 3, typeof(string), typeof(int), typeof(int)), 29new Function("Trim", FunctionId.Trim, typeof(string), true, false, 1, typeof(string), null, null), 31new Function("Convert", FunctionId.Convert, typeof(object), false, true, 1, typeof(object), null, null), 32new Function("DateTimeOffset", FunctionId.DateTimeOffset, typeof(DateTimeOffset), false, true, 3, typeof(DateTime), typeof(int), typeof(int)), 34new Function("Max", FunctionId.Max, typeof(object), false, false, 1, null, null, null), 35new Function("Min", FunctionId.Min, typeof(object), false, false, 1, null, null, null), 36new Function("Sum", FunctionId.Sum, typeof(object), false, false, 1, null, null, null), 37new Function("Count", FunctionId.Count, typeof(object), false, false, 1, null, null, null), 38new Function("Var", FunctionId.Var, typeof(object), false, false, 1, null, null, null), 39new Function("StDev", FunctionId.StDev, typeof(object), false, false, 1, null, null, null), 40new Function("Avg", FunctionId.Avg, typeof(object), false, false, 1, null, null, null),
3 references to Function
System.Data.Common (3)
System\Data\Filter\AggregateNode.cs (1)
63throw ExprException.UndefinedFunction(Function.s_functionName[(int)aggregateType]);
System\Data\Filter\FunctionNode.cs (2)
22private static readonly Function[] s_funcs = new Function[] {