DomainObjects Class Library

Average Constructor

Returns the average of all values in a group including duplicate values. Translates to a AVG(field) SQL function.

Overload List

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);

See Also

Average Class | DomainObjects.Facade.Command.Function Namespace