IDataReaderExtension.IsAggregateRow 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指示当前行是否包含聚合数据。
public:
property bool IsAggregateRow { bool get(); };
public bool IsAggregateRow { get; }
member this.IsAggregateRow : bool
Public ReadOnly Property IsAggregateRow As Boolean
属性值
如果当前行包含聚合数据,则该值为 true
;否则为 false
。
注解
该 IsAggregateRow 属性使你能够向报表服务器提供有关结果集的特定聚合信息。 例如,采用以下结果集:
City State Sales
====================================
Seattle WA 150.65
Seattle (null) 150.65
Tacoma WA 75.54
Tacoma (null) 75.54
(null) WA 226.19
Portland OR 112.25
Portland (null) 112.25
(null) OR 112.25
(null) (null) 338.44
每当结果集行中的所有字段都包含数据时,结果集都应返回false
IsAggregateRow。 在上一个示例中,每当行中的列包含聚合字段(如行 2、4、5、7、8 和 9)时,都会返回true
IsAggregateRow该字段。