Class PaginatedQueryCommand
Represents a query command with pagination support, allowing for fetching a specific number of rows (records) from the server.
Assembly: Alachisoft.NCache.Client.dll
Syntax
public class PaginatedQueryCommand : QueryCommand
Constructors
PaginatedQueryCommand(String, Int32)
Initializes a new instance of the PaginatedQueryCommand class.
Declaration
public PaginatedQueryCommand(string query, int pageSize)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | The SQL-like query text to be executed. |
System.Int32 | pageSize | The number of rows (records) to fetch per page. |
Properties
PageSize
Gets or sets the number of rows (records) to fetch per chunk.
Declaration
public int PageSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The number of rows (records) to fetch per chunk. |