Gets or sets the total row count for this analytics result. This will be the same number as the count of rows returned, unless paging was placed in the analytics statement, in which case, TotalRowCount will be the number of rows that should have been returned.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public long TotalRowCount { get; set; }
Visual Basic (Declaration)
Public Property TotalRowCount As Long
Visual C++
public:
property long long TotalRowCount {
	long long get ();
	void set (long long value);
}

Remarks

Paging is placed in analytics statements as follows: RETURN AvgScoreByWinery AS SELECT AVG(P_Score) AS AvgScore GROUP BY P_Winery PAGE(0,10)

See Also