Click or drag to resize

SharedHubQueryCompanies Method

Queries company table.

Namespace: GSF.Web.Shared
Assembly: GSF.Web (in GSF.Web.dll) Version: 2.4.181-beta
Syntax
[RecordOperationAttribute(typeof(Company), RecordOperation.QueryRecords)]
public IEnumerable<Company> QueryCompanies(
	string sortField,
	bool ascending,
	int page,
	int pageSize,
	string filterText
)
View Source

Parameters

sortField  String
Table field label to sort on.
ascending  Boolean
Boolean denoting direction of sort.
page  Int32
The page number to return.
pageSize  Int32
The size of the page.
filterText  String
Text to filter search down to.

Return Value

IEnumerableCompany
The rows in the table matching the query.
See Also