LinqDataSourceSelectEventArgs Constructor (DataSourceSelectArguments, IDictionary(Of String, Object), IOrderedDictionary, IDictionary(Of String, Object), IDictionary(Of String, Object), IDictionary(Of String, Object))

 

Initializes a new instance of the LinqDataSourceSelectEventArgs class.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

Public Sub New (
	arguments As DataSourceSelectArguments,
	whereParameters As IDictionary(Of String, Object),
	orderByParameters As IOrderedDictionary,
	groupByParameters As IDictionary(Of String, Object),
	orderGroupsByParameters As IDictionary(Of String, Object),
	selectParameters As IDictionary(Of String, Object)
)

Parameters

arguments
Type: System.Web.UI.DataSourceSelectArguments

The values that are passed from the data-bound control that determine how the data is paged and sorted. For more information, see the Arguments property.

whereParameters
Type: System.Collections.Generic.IDictionary(Of String, Object)

The collection of parameters that is used to create the Where clause. For more information, see the WhereParameters property.

orderByParameters
Type: System.Collections.Specialized.IOrderedDictionary

The collection of parameters that is used to create the Order By clause. For more information, see the OrderByParameters property.

groupByParameters
Type: System.Collections.Generic.IDictionary(Of String, Object)

The collection of parameters that is used to create the Group By clause. For more information, see the GroupByParameters property.

orderGroupsByParameters
Type: System.Collections.Generic.IDictionary(Of String, Object)

The collection of parameter that is used to create the clause that is used for sorting grouped data. For more information, see the OrderGroupsByParameters property.

selectParameters
Type: System.Collections.Generic.IDictionary(Of String, Object)

The collection of parameters that is used to create the Select clause. For more information, see the SelectParameters property.

.NET Framework
Available since 3.5
Return to top
Show: