QueryByAttribute.TopCount Property

Definition

Gets or sets the number of rows to be returned.

C++
public:
 property Nullable<int> TopCount { Nullable<int> get(); void set(Nullable<int> value); };

Property Value

The number of rows to be returned.

Attributes

Examples

C#
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

Produkt Versioner
Dataverse SDK Latest