The DataTablesPage Entity
The Catalytic.SDK.Entities.DataTablesPage
class represents a page of DataTable
s, usually returned from the DataTables.Find()
method.
Instance Properties
Name | Type | Description |
---|---|---|
DataTables | ICollection<DataTable> | The Instances included in this page of results |
NextPageOptions | PagingOptions | Options to pass into DataTables.Find() to fetch the next page of results |
IResultsPage Properties
Like every results page, DataTablesPage
implements Catalytic.Sdk.Entities.IResultsPage<T>
which provides the following properties. This can be helpful if you are building generic functionality for result pages.
Name | Type | Description |
---|---|---|
Items | IEnumerable<DataTable> | The Instance s included in this page of results |
NextPageOptions | PagingOptions | Options to pass into DataTables.Find() to fetch the next page of results |
CollectionName | string | The name of the items. In this case, "DataTables" |
Updated about 4 years ago