The DataTablesPage Entity

The Catalytic.SDK.Entities.DataTablesPage class represents a page of DataTables, usually returned from the DataTables.Find() method.

Instance Properties

NameTypeDescription
DataTablesICollection<DataTable>The Instances included in this page of results
NextPageOptionsPagingOptionsOptions 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.

NameTypeDescription
ItemsIEnumerable<DataTable>The Instances included in this page of results
NextPageOptionsPagingOptionsOptions to pass into DataTables.Find() to fetch the next page of results
CollectionNamestringThe name of the items. In this case, "DataTables"