DomainObjects Class Library

Field.Count Method

Returns the total number of rows from a table, including duplicates, where this field evaluates to a non-null value. Translates to a COUNT(field) SQL function.

Overload List

Returns the total number of rows from a table, including duplicates, where this field evaluates to a non-null value. Translates to a COUNT(field) SQL function.

public Count Count();

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

public Count Count(Boolean);

See Also

Field Class | DomainObjects.Facade.Command.Expression Namespace