Propriedade QueryByAttribute.TopCount
Aplica-se a: CRM 2015 on-prem, CRM Online
Gets or sets the number of rows to be returned.
Namespace: Microsoft.Xrm.Sdk.Query
Assembly: Microsoft.Xrm.Sdk (em Microsoft.Xrm.Sdk.dll)
Sintaxe
'Declaração
<DataMemberAttribute(Order:=50)> _
Public Property TopCount As Nullable(Of Integer)
[DataMemberAttribute(Order=50)]
public Nullable<int> TopCount { get; set; }
Valor de Propriedade
Type: Int32
The number of rows to be returned.
Exemplo
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;
}
Comentários
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.
Segurança do Thread
Todos os membros estáticos (Shared in Visual Basic) desse tipo são protegidos por thread. Não há nenhum garantia de que os membros de instância sejam protegidos por thread.
Plataformas
Plataformas de desenvolvimento
Windows Vista, Windows Server 2003 e
Plataformas de destino
Windows Vista,Windows XP
Change History
Consulte também
Referência
Classe QueryByAttribute
Membros de QueryByAttribute
Namespace Microsoft.Xrm.Sdk.Query
Send comments about this topic to Microsoft.
© 2014 Microsoft Corporation. All rights reserved.