 | SphinxGroupByFunction Enumeration |
Determines how the group by value is calculated.
Namespace:
SphinxConnector.NativeApi
Assembly:
SphinxConnector (in SphinxConnector.dll) Version: 5.4.1
Syntax[SerializableAttribute]
public enum SphinxGroupByFunction
<SerializableAttribute>
Public Enumeration SphinxGroupByFunction
Members
| Member name | Value | Description |
---|
| Day | 0 |
Extracts year, month and day in YYYYMMDD format from timestamp. This is the default.
|
| Week | 1 |
Extracts year and first day of the week number (counting from year start) in YYYYNNN format from timestamp;
|
| Month | 2 |
Extracts month in YYYYMM format from timestamp
|
| Year | 3 |
Extracts year in YYYY format from timestamp
|
| Attribute | 4 |
Uses attribute value itself for grouping.
|
| AttributePair | 5 | |
See Also