LinqDataSourceSelectEventArgs.Arguments 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取用于确定数据返回方式的值。
public:
property System::Web::UI::DataSourceSelectArguments ^ Arguments { System::Web::UI::DataSourceSelectArguments ^ get(); };
public System.Web.UI.DataSourceSelectArguments Arguments { get; }
member this.Arguments : System.Web.UI.DataSourceSelectArguments
Public ReadOnly Property Arguments As DataSourceSelectArguments
属性值
包含用于确定数据返回方式的值的对象。
注解
数据绑定控件通过 属性将属性传递给 LinqDataSource 控件, Arguments 以指定分页和排序方式。
AutoPage如果 属性或 AutoSort 属性设置为 true
,则LinqDataSource控件将根据数据绑定控件中的属性自动排序或页。
可以通过将 和 AutoSort 属性设置为 AutoPagefalse
,然后为 Selecting 事件创建处理程序,来自定义从查询中对数据的排序和分页方式。 在事件处理程序中, 使用 Arguments 属性从数据绑定控件中检索排序和分页属性。 然后,根据 属性中的属性 Arguments 根据需要自定义查询。
RetrieveTotalRowCount如果 对象的 属性DataSourceSelectArguments设置为 true
,则必须返回 属性TotalRowCount的值。