public IEnumerable<T> QueryRecords(
string? sortField,
bool ascending,
int page,
int pageSize
)
Public Function QueryRecords (
sortField As String,
ascending As Boolean,
page As Integer,
pageSize As Integer
) As IEnumerable(Of T)
public:
IEnumerable<T>^ QueryRecords(
String^ sortField,
bool ascending,
int page,
int pageSize
)
function QueryRecords(sortField, ascending, page, pageSize);
This function is used for record paging. Primary keys are cached server-side, typically per user session, to maintain desired per-page sort order. Call ClearPrimaryKeyCache to manually clear cache when table contents are known to have changed.
If the specified sortField has been marked with EncryptDataAttribute, establishing the primary key cache operation will take longer to execute since query data will need to be downloaded locally and decrypted so the proper sort order can be determined.