Share via


QueryByAttribute.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(Order=50)]
public int? TopCount { get; set; }
[<System.Runtime.Serialization.DataMember(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

Examples

public void TestQueryByAttributeWithTopCount()
{
         QueryByAttribute query = new QueryByAttribute();
         query.EntityName = "Account";
         query.ColumnSet = new Microsoft.Xrm.Sdk.Query.ColumnSet(new string[] { "name" });
         query.AddAttributeValue("address1_city", "seattle");
         query.TopCount = 3;
}

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