Returns the average of all values in a group including duplicate values. Translates to a AVG(field)
SQL function.
Returns the average of all values in a group including duplicate values. Translates to a AVG(field)
SQL function.
public Average(Field);
Returns the average of the values in a group where the given field evaluates to a non-null value. Translates to a AVG([DISTINCT] field)
SQL function.
public Average(Field,Boolean);
Average Class | DomainObjects.Facade.Command.Function Namespace