IQueryResultEnumerable<T> Interface

Definition

The IQueryResultEnumerable{T} interface provides extra details returned with response e.g. total count and next link

C#
public interface IQueryResultEnumerable<out T> : System.Collections.Generic.IEnumerable<out T>

Type Parameters

T
This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
Derived
Implements

Properties

NextLink

Gets the link to next page of result that is returned in response headers.

TotalCount

Gets the total count for all the records that would have been returned ignoring any take paging/limit clause specified by client or server.

Extension Methods

ToCommaSeparatedString<T>(IEnumerable<T>)

Converts the elements of a collection to strings and concatenates them into a comma-separated list, or returns null for null or empty collections.

Applies to

Product Versions
Azure SDK for .NET Legacy, Latest