RowExpression.Column
통사론
RowExpression.Column(columnName as text) as record
정보
행식 내의 행에서 열 columnName
에 대한 액세스를 나타내는 추상 구문 트리(AST)를 반환합니다.
예제 1
"CustomerName" 열의 액세스를 나타내는 AST를 만듭니다.
사용량
RowExpression.Column("CustomerName")
출력
[
Kind = "FieldAccess",
Expression = RowExpression.Row,
MemberName = "CustomerName"
]