ObjectDataSourceView.CanRetrieveTotalRowCount 属性

定义

获取一个值,该值指示与当前的 ObjectDataSourceView 控件关联的 ObjectDataSource 对象除了支持检索数据集外,是否还支持检索数据行总数。

public:
 virtual property bool CanRetrieveTotalRowCount { bool get(); };
public override bool CanRetrieveTotalRowCount { get; }
member this.CanRetrieveTotalRowCount : bool
Public Overrides ReadOnly Property CanRetrieveTotalRowCount As Boolean

属性值

Boolean

如果支持该操作,则为 true;否则为 false

注解

如果该SelectCountMethod属性已设置,则CanRetrieveTotalRowCount返回true该属性。 返回计数的方法应返回可以分页的行总数,而不是页中的行数。 数据绑定控件使用可分页的行总数来确定如何呈现分页控件。 例如,控件寻呼器中 GridView 要呈现的数字寻呼按钮数。 有关分页支持的详细信息,请参阅 EnablePaging

CanRetrieveTotalRowCount 调用 ExecuteSelect 方法期间检查该属性,以确保数据源控件支持通过设置各种 DataSourceSelectArguments 属性请求的所有功能。

适用于

另请参阅