IHostManagementGetDataAsync Method

Get the information of the requested table or tables asynchronously.

Definition

Namespace: Aliquo.Windows
Assembly: Aliquo.Windows (in Aliquo.Windows.dll) Version: 5.0.9179.22654
C#
Task<List<Data>> GetDataAsync(
	string tables,
	string fields,
	string condition,
	string order = null,
	string group = null,
	int maxRecords = 0,
	bool useSettings = false,
	List<string> excludeUserConditions = null
)

Parameters

tables  String
Table or tables on which the query is performed.
fields  String
Fields to return the value.
condition  String
Query data selection criteria.
order  String  (Optional)
Fields and query ordering expression.
group  String  (Optional)
Fields and grouping expression of the query.
maxRecords  Int32  (Optional)
Maximum number of records (unlimited if value less than or equal to zero).
useSettings  Boolean  (Optional)
Indicates whether the table settings are used (links, conditions per user, ...).
excludeUserConditions  ListString  (Optional)
List<String> with the table aliases to exclude from per-user conditions.

Return Value

TaskListData
List<Data> with the information to be obtained in the query.

See Also