Gets the static record count statistic for this dimension value.

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

Syntax

C#
public Nullable<long> StaticRecordCount { get; set; }
Visual Basic (Declaration)
Public Property StaticRecordCount As Nullable(Of Long)
Visual C++
public:
property Nullable<long long> StaticRecordCount {
	Nullable<long long> get ();
	void set (Nullable<long long> value);
}

Field Value

The static record count for this DimensionValue, or null if this is not a refinement dimension value, or if the "stat-all" flag is not enabled in the MDEX Engine.

Remarks

The static record count is the number of records that are tagged with this dimension value; that is, it is the number of records that would be returned if this dimension value was the only dimension value selected when executing a NavigationCommand.

If not null, this value is same as the value of the DGraph.StaticBins property.

See Also