IHostManagementGetDataAsync Method
Get the information of the requested table or tables asynchronously.
Namespace: Aliquo.WindowsAssembly: Aliquo.Windows (in Aliquo.Windows.dll) Version: 5.0.9179.22654
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
)
Function GetDataAsync (
tables As String,
fields As String,
condition As String,
Optional order As String = Nothing,
Optional group As String = Nothing,
Optional maxRecords As Integer = 0,
Optional useSettings As Boolean = false,
Optional excludeUserConditions As List(Of String) = Nothing
) As Task(Of List(Of Data))
- 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.
TaskListDataList<
Data> with the information to be obtained in the query.