IDataReaderExtension.IsAggregateRow 属性

定义

指示当前行是否包含聚合数据。

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  

每当结果集行中的所有字段都包含数据时,结果集都应返回falseIsAggregateRow。 在上一个示例中,每当行中的列包含聚合字段(如行 2、4、5、7、8 和 9)时,都会返回trueIsAggregateRow该字段。

适用于