Search documentationEsc

IQueryResult<TItem>

Represent a full set of data from a cosmos query

Namespace: Microsoft.Azure.CosmosRepository
Kind: interface

Represent a full set of data from a cosmos query

public interface IQueryResult<out TItem> where TItem : IItem

Type parameters

NameDescription
TItem

Example

Members

Propertys

IQueryResult<TItem>.Items

The items that are in the current page.

IReadOnlyList<out TItem> Items { get; }

ReturnsIReadOnlyList{{TItem}}

IQueryResult<TItem>.Charge

The amount of RU’s the given query cost.

double Charge { get; }

ReturnsDouble