RowExpression.Column
RowExpression.Column("CustomerName")
返回表示对行表达式内的列 columnName
的访问权限的 AST。
示例:
创建表示对列 "CustomerName" 的访问权限的 AST。
使用情况:
RowExpression.Column("CustomerName")
输出:
[
Kind = "FieldAccess",
Expression = RowExpression.Row,
MemberName = "CustomerName"
]