CosmosPage<T> Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A single page of results returned from a user query; can be used to paginate through long result-sets. Returned by ToPageAsync<TSource>(IQueryable<TSource>, Int32, String, Nullable<Int32>, CancellationToken).
[System.Diagnostics.CodeAnalysis.Experimental("EF9102")]
[System.Runtime.CompilerServices.IsReadOnly]
public readonly struct CosmosPage<T>
[<System.Diagnostics.CodeAnalysis.Experimental("EF9102")>]
[<System.Runtime.CompilerServices.IsReadOnly>]
type CosmosPage<'T> = struct
Public Structure CosmosPage(Of T)
Type Parameters
- T
The type of values contained in the page.
- Inheritance
-
CosmosPage<T>
- Attributes
Constructors
CosmosPage<T>(IReadOnlyList<T>, String) |
A single page of results returned from a user query; can be used to paginate through long result-sets. Returned by ToPageAsync<TSource>(IQueryable<TSource>, Int32, String, Nullable<Int32>, CancellationToken). |
Properties
ContinuationToken |
The continuation token for fetching further results from the query. Is |
Values |
The values contained in this page. |
Applies to
Entity Framework