System.Data.Common.GroupByBehavior Enumeration

Specifies the relationship between the columns in a GROUP BY clause and the non-aggregated columns in the select-list of a SELECT statement.

Syntax

public enum GroupByBehavior

Remarks

The System.Data.Common.GroupByBehavior values are mutually exclusive.

Members

Member NameDescription
ExactMatch

The GROUP BY clause must contain all nonaggregated columns in the select list, and must not contain other columns not in the select list.

MustContainAll

The GROUP BY clause must contain all nonaggregated columns in the select list, and can contain other columns not in the select list.

NotSupported

The GROUP BY clause is not supported.

Unknown

The support for the GROUP BY clause is unknown.

Unrelated

There is no relationship between the columns in the GROUP BY clause and the nonaggregated columns in the SELECT list. You may group by any column.

Requirements

Namespace: System.Data.Common
Assembly: System.Data (in System.Data.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0