Click or drag to resize
Mapper.FetchPageAsync<T> Method (CqlQueryOptions)
Gets a paged list of T results from Cassandra using the CQL statement specified. Suitable for manually page through all the results of a query.

Namespace: Dse.Mapping
Assembly: Dse (in Dse.dll) Version: 2.5.0
Syntax
C#
public Task<IPage<T>> FetchPageAsync<T>(
	CqlQueryOptions options = null
)

Parameters

options (Optional)
Type: Dse.Mapping.CqlQueryOptions

Type Parameters

T

Return Value

Type: Task<IPage<T>>

Implements

ICqlQueryAsyncClient.FetchPageAsync<T>(CqlQueryOptions)
See Also