LinqDataSource.OrderGroupsByParameters 属性

定义

获取用于创建 Order Groups By 子句的参数集合。

public:
 property System::Web::UI::WebControls::ParameterCollection ^ OrderGroupsByParameters { System::Web::UI::WebControls::ParameterCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.ParameterCollection OrderGroupsByParameters { get; }
[<System.ComponentModel.Browsable(false)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.OrderGroupsByParameters : System.Web.UI.WebControls.ParameterCollection
Public ReadOnly Property OrderGroupsByParameters As ParameterCollection

属性值

ParameterCollection

用于创建 Order Groups By 子句的参数。

属性

注解

LinqDataSource 控件使用集合中的 OrderGroupsByParameters 参数在运行时创建 Order Groups By 子句。

仅当必须在 Order Groups By 子句中的运行时设置值时,才向集合添加 OrderGroupsByParameters 值。 可以使用属性定义用于对数据进行排序的 OrderGroupsBy 字段。

可以在集合中 OrderGroupsByParameters 设置参数,并将参数与属性中的 OrderGroupsBy 占位符匹配。 但是,使用此方法时,集合中的 OrderGroupsByParameters 参数不能表示列名;它们必须表示值。 可以将参数设置为值,然后将该值与属性进行比较。 例如,可以根据属性中的值是否小于参数表示的运行时值对数据进行排序。

适用于