This topic has not yet been rated - Rate this topic

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.

Namespace:  System.Data.Common
Assembly:  System.Data (in System.Data.dll)
public enum GroupByBehavior
Member nameDescription
UnknownThe support for the GROUP BY clause is unknown.
NotSupportedThe GROUP BY clause is not supported.
UnrelatedThere 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.
MustContainAllThe GROUP BY clause must contain all nonaggregated columns in the select list, and can contain other columns not in the select list.
ExactMatchThe GROUP BY clause must contain all nonaggregated columns in the select list, and must not contain other columns not in the select list.

The GroupByBehavior values are mutually exclusive.

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.