RowExpression.Column
Returns an AST that represents access to a column within a row expression.
function (columnName
as text) as record
Returns an AST that represents access to column
columnName
of the row within a row expression.Table.Table construction
Creates an AST representing access of column "CustomerName".
RowExpression.Column("CustomerName")
[ Kind = "FieldAccess", Expression = RowExpression.Row, MemberName = "CustomerName" ]
Last modified 4yr ago