QueryContext 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 la nueva instancia de la QueryContext clase mediante las WhereParameterspropiedades , OrderGroupsByParameters, OrderByParameters, GroupByParameters, SelectParameters, y Arguments .
public:
QueryContext(System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ whereParameters, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ orderGroupsByParameters, System::Collections::Specialized::IOrderedDictionary ^ orderByParameters, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ groupByParameters, System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ selectParameters, System::Web::UI::DataSourceSelectArguments ^ arguments);
public QueryContext(System.Collections.Generic.IDictionary<string,object> whereParameters, System.Collections.Generic.IDictionary<string,object> orderGroupsByParameters, System.Collections.Specialized.IOrderedDictionary orderByParameters, System.Collections.Generic.IDictionary<string,object> groupByParameters, System.Collections.Generic.IDictionary<string,object> selectParameters, System.Web.UI.DataSourceSelectArguments arguments);
new System.Web.UI.WebControls.QueryContext : System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Specialized.IOrderedDictionary * System.Collections.Generic.IDictionary<string, obj> * System.Collections.Generic.IDictionary<string, obj> * System.Web.UI.DataSourceSelectArguments -> System.Web.UI.WebControls.QueryContext
Public Sub New (whereParameters As IDictionary(Of String, Object), orderGroupsByParameters As IDictionary(Of String, Object), orderByParameters As IOrderedDictionary, groupByParameters As IDictionary(Of String, Object), selectParameters As IDictionary(Of String, Object), arguments As DataSourceSelectArguments)
Parámetros
- whereParameters
- IDictionary<String,Object>
Colección de parámetros que usa el origen de datos para crear la Where cláusula .
- orderGroupsByParameters
- IDictionary<String,Object>
Colección de parámetros que usa el origen de datos para crear la OrderGroupsBy cláusula .
- orderByParameters
- IOrderedDictionary
Colección de parámetros que usa el origen de datos para crear la OrderBy cláusula .
- groupByParameters
- IDictionary<String,Object>
Colección de parámetros que usa el origen de datos para crear la GroupBy cláusula .
- selectParameters
- IDictionary<String,Object>
Colección de parámetros que usa el origen de datos para crear el Select comando .
- arguments
- DataSourceSelectArguments
Argumentos que se van a pasar a la QueryContext clase .