Skip to content

Sql.Avg method (1 of 3)

Creates an AVG() expression.

public static string Avg(IField field)
parameter description
field The field.

Return Value

The AVG() expression.

Exceptions

exception condition
ArgumentNullException field is null.

See Also


Sql.Avg method (2 of 3)

Creates an AVG() expression.

public static string Avg(string field)
parameter description
field The field.

Return Value

The AVG() expression.

Exceptions

exception condition
ArgumentNullException field is null or empty.

See Also


Sql.Avg method (3 of 3)

Creates an AVG() expression.

public static string Avg(int joinNumber, string field)
parameter description
joinNumber The join number.
field The field.

Return Value

The AVG() expression.

Exceptions

exception condition
ArgumentNullException field is null or empty.

See Also