Table of Contents

Class CursorPagedResult<T>

Namespace
CL.MySQL2.Models
Assembly
CL.MySQL2.dll

Represents one forward-only page from a cursor-paged query.

public sealed class CursorPagedResult<T>

Type Parameters

T

The entity type.

Inheritance
CursorPagedResult<T>
Inherited Members

Properties

HasNextPage

True when another page is available.

public bool HasNextPage { get; }

Property Value

bool

Items

The items returned for this page.

public List<T> Items { get; init; }

Property Value

List<T>

NextCursor

The opaque cursor to pass to After for the next page, or null when this is the final page.

public string? NextCursor { get; init; }

Property Value

string

PageSize

The requested maximum number of items for the page.

public int PageSize { get; init; }

Property Value

int