LinqDataSourceSelectEventArgs Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the LinqDataSourceSelectEventArgs class.
public:
LinqDataSourceSelectEventArgs(System::Web::UI::DataSourceSelectArguments ^ arguments, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ whereParameters, System::Collections::Specialized::IOrderedDictionary ^ orderByParameters, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ groupByParameters, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ orderGroupsByParameters, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ selectParameters);
public LinqDataSourceSelectEventArgs (System.Web.UI.DataSourceSelectArguments arguments, System.Collections.Generic.IDictionary<string,object> whereParameters, System.Collections.Specialized.IOrderedDictionary orderByParameters, System.Collections.Generic.IDictionary<string,object> groupByParameters, System.Collections.Generic.IDictionary<string,object> orderGroupsByParameters, System.Collections.Generic.IDictionary<string,object> selectParameters);
new System.Web.UI.WebControls.LinqDataSourceSelectEventArgs : System.Web.UI.DataSourceSelectArguments * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Specialized.IOrderedDictionary * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, obj> -> System.Web.UI.WebControls.LinqDataSourceSelectEventArgs
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
- 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
- IDictionary<String,Object>
The collection of parameters that is used to create the Where clause. For more information, see the WhereParameters property.
- orderByParameters
- IOrderedDictionary
The collection of parameters that is used to create the Order By clause. For more information, see the OrderByParameters property.
- groupByParameters
- IDictionary<String,Object>
The collection of parameters that is used to create the Group By clause. For more information, see the GroupByParameters property.
- orderGroupsByParameters
- IDictionary<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
- IDictionary<String,Object>
The collection of parameters that is used to create the Select clause. For more information, see the SelectParameters property.