LinqDataSourceSelectEventArgs.GroupByParameters Property

Definition

Gets the collection of parameters that is used to create the GroupBy clause.

public:
 property System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ GroupByParameters { System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ get(); };
public System.Collections.Generic.IDictionary<string,object> GroupByParameters { get; }
member this.GroupByParameters : System.Collections.Generic.IDictionary<string, obj>
Public ReadOnly Property GroupByParameters As IDictionary(Of String, Object)

Property Value

An object that contains the parameters for the GroupBy clause.

Remarks

You use the GroupByParameters property to access parameters for the GroupBy clause in a handler for the Selecting event. You can modify the GroupBy clause by adding or removing parameters from this collection. By default, the GroupByParameters property of the LinqDataSourceSelectEventArgs object contains any parameters that you added to the GroupByParameters property of the LinqDataSource control.

Applies to

See also