QueryExpression.TopCount Property

Definition

Gets or sets the number of rows to be returned.

public:
 property Nullable<int> TopCount { Nullable<int> get(); void set(Nullable<int> value); };
[System.Runtime.Serialization.DataMember(EmitDefaultValue=false, Order=50)]
public int? TopCount { get; set; }
[<System.Runtime.Serialization.DataMember(EmitDefaultValue=false, Order=50)>]
member this.TopCount : Nullable<int> with get, set
Public Property TopCount As Nullable(Of Integer)

Property Value

The number of rows to be returned.

Attributes

Remarks

When specified, this limits the number rows returned in a query result set to the specified number of rows.

A query can contain either PageInfo or TopCount property values. If both are specified, an error will be thrown.

Applies to