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