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 Average();
Returns the average of the values in a group where this field evaluates to a non-null value. Translates to a AVG([DISTINCT] field) SQL function.
public Average Average(Boolean);
Field Class | DomainObjects.Facade.Command.Expression Namespace