Returns the total number of rows in a group including duplicates and null values. Translates to a
COUNT(*)SQL function.
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);
Count Class | DomainObjects.Facade.Command.Function Namespace