LinqDataSourceSelectEventArgs 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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))
参数
- arguments
- DataSourceSelectArguments
从数据绑定控件传递的值,用于确定如何对数据进行分页和排序。 有关详细信息,请参阅 Arguments 属性。
- whereParameters
- IDictionary<String,Object>
用于创建 Where 子句的参数集合。 有关详细信息,请参阅 WhereParameters 属性。
- orderByParameters
- IOrderedDictionary
用于创建 Order By 子句的参数集合。 有关详细信息,请参阅 OrderByParameters 属性。
- groupByParameters
- IDictionary<String,Object>
用于创建 Group By 子句的参数集合。 有关详细信息,请参阅 GroupByParameters 属性。
- orderGroupsByParameters
- IDictionary<String,Object>
用于创建用于对分组数据进行排序的子句的参数集合。 有关详细信息,请参阅 OrderGroupsByParameters 属性。
- selectParameters
- IDictionary<String,Object>
用于创建 Select 子句的参数集合。 有关详细信息,请参阅 SelectParameters 属性。