This class is the return type for the Select method.
Properties
public int TotalPages {get; set;}
Total number of data pages.(Example: 40,000 total records, 10,000 records per page would give you 4 total pages)
public int TotalRecords {get; set;}
Total of all records.
public int CurrentPage {get; set;}
The current data page number.
public int RecordsAllowedPerPage {get; set;}
The default (and max) allowed records per data page is 10,000. This value can be decreased (see code example).
public List<T> Data {get; set;}
List of data.
public string SerializedData {get;}
The serialized version of Data (returns a JSON array string).
Method
public string ToString()
Convert object into JSON string.
|