Working with datasets in BridgeWorX has been made easier by adding the getoutputcell custom expression function, which allows users to get a scalar value from a particular cell of a dataset. A few more expressions have been added to BridgeWorX in this vein to make working with datasets easier:
getoutputrow – Return an array containing scalar values from all columns of specified row.
findoutputrow – Return an array containing scalar values from all columns of the first row that matches a filtering condition (the syntax of rowFilter should be the same as that of ADO.NET DataTable view rows filtering).
findoutputcell – Same as findoutputrow, except returns one particular cell in the row based on an index or column name.
findoutputrowindex – Return an integer index of the first row that matches a filtering condition or (-1) if no matching rows found.