DomainObjects Class Library

Count Constructor

Returns the total number of rows in a group including duplicates and null values. Translates to a

COUNT(*)
SQL function.

Overload List

Returns the total number of rows in a group including duplicates and null values. Translates to a

COUNT(*)
SQL function.

public Count();

Returns the number of rows in a group where the given field evaluates to a non-null value. Translates to a COUNT([DISTINCT] field) SQL function.

public Count(Field,Boolean);

See Also

Count Class | DomainObjects.Facade.Command.Function Namespace