DatasetQuery.SelectCommandAsync Method
The tags configured in the mapping column will receive the value of the first row.
C# Example:
DataTable dataTable = await @Dataset.Query.query1.SelectCommandAsync();
if (dataTable != null && dataTable.Rows.Count > 0)
{
@Tag.firstItem = dataTable.Rows[0]["Item"].ToString();
}