QuickObjects.ObjectBase Send comments on this topic.
GroupTypes Enumeration
See Also  
Akal.QuickObjects.ObjectBase Namespace : GroupTypes Enumeration
GroupTypes will be applied to each field. Each value will cause a certain function to be applied to the column while the business object's ObjectMode property is set to GroupBy.

Syntax

C# 
public enum GroupTypes : Enum 

Members

MemberDescription
None None - This will excluded when the ObjectMode property of the business object is set to GroupBy.
GroupBy GroupBy - This will cause the field to be included in the Group By clause when the ObjectMode property of the business object is set to GroupBy.
Sum Sum - This will cause the field to be included in the field list and the SUM function will be performed on the column.
Average Average - This will cause the field to be included in the field list and the AVG function will be performed on the column.
Count Count - This will cause the field to be included in the field list and the Count function will be performed on the column.
Maximum Maximum - This will cause the field to be included in the field list and the MAX function will be performed on the column.
Minimum Minimum - This will cause the field to be included in the field list and the Minimum function will be performed on the column.
StandardDeviation StandardDeviation - This will cause the field to be included in the field list and the STDDEV function will be performed on the column.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Akal.QuickObjects.ObjectBase.GroupTypes

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also