RowExpression.Column
語法
RowExpression.Column(columnName as text) as record
關於
傳回代表資料列運算式內資料列之資料行 columnName
存取權的抽象語法樹 (AST)。
範例 1
建立代表資料行 "CustomerName" 存取權的 AST。
使用方式
RowExpression.Column("CustomerName")
輸出
[
Kind = "FieldAccess",
Expression = RowExpression.Row,
MemberName = "CustomerName"
]