Click or drag to resize

MapperFetchPageT Method (Int32, Byte, String, Object)

Gets a paged list of T results from Cassandra. Suitable for manually page through all the results of a query.

Namespace:  Dse.Mapping
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public IPage<T> FetchPage<T>(
	int pageSize,
	byte[] pagingState,
	string cql,
	params Object[] args
)

Parameters

pageSize
Type: SystemInt32
Amount of items to return
pagingState
Type: SystemByte
The token representing the state of the result page. To get the first page, use a null value.
cql
Type: SystemString
args
Type: SystemObject
Query parameters

Type Parameters

T

Return Value

Type: IPageT

Implements

ICqlQueryClientFetchPageT(Int32, Byte, String, Object)
See Also