IHostManagementGetDataValuesAsync Method

Get the values of several fields 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<Data> GetDataValuesAsync(
	string table,
	string fields,
	string condition,
	string order = null,
	bool useSettings = false,
	List<string> excludeUserConditions = null
)

Parameters

table  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.
useSettings  Boolean  (Optional)
Indicates whether the table settings are used (links, conditions per user, ...).
excludeUserConditions  ListString  (Optional)
List of table aliases to exclude from per-user conditions.

Return Value

TaskData
Data with the the values of the indicated fields.

See Also