LinqDataSourceSelectEventArgs Constructor
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Inicializa una nueva instancia de la clase LinqDataSourceSelectEventArgs.
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))
Parámetros
- arguments
- DataSourceSelectArguments
Valores que se pasan desde el control enlazado a datos que determinan cómo se paginan y ordenan los datos. Para obtener más información, vea la propiedad Arguments.
- whereParameters
- IDictionary<String,Object>
Colección de parámetros que se utiliza para crear la cláusula Where. Para obtener más información, vea la propiedad WhereParameters.
- orderByParameters
- IOrderedDictionary
Colección de parámetros que se usa para crear la cláusula Order By. Para obtener más información, vea la propiedad OrderByParameters.
- groupByParameters
- IDictionary<String,Object>
Colección de parámetros que se usa para crear la cláusula Group By. Para obtener más información, vea la propiedad GroupByParameters.
- orderGroupsByParameters
- IDictionary<String,Object>
Colección de parámetros que se utiliza para crear la cláusula empleada para ordenar los datos agrupados. Para obtener más información, vea la propiedad OrderGroupsByParameters.
- selectParameters
- IDictionary<String,Object>
Colección de parámetros que se utiliza para crear la cláusula Select. Para obtener más información, vea la propiedad SelectParameters.