Property Rank
Rank
Rank of the row in the table to which it belongs.
Declaration
public int Rank { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
To get row's rank in the cluster you can subtract cluster's first row rank from the row rank.
Examples
The following example demonstrates how to determine row rank in its cluster:
if(row.Cluster != null)
{ // Cluster may be null if a row is from table that is not clustered.
int rowRankInCluster = row.Rank - row.Cluster.FirstRowRank;
}