RowExpression.From
RowExpression.From(function as function) as record
返回 function
主体的 AST,规范化为行表达式:
- 函数必须为 1 个参数的 lambda。
- 对函数参数的所有引用已替换为
RowExpression.Row
。 - 对列的所有引用已替换为
RowExpression.Column(columnName)
。 - AST 将简化为仅包含以下类型的节点:
Constant
Invocation
Unary
Binary
If
FieldAccess
NotImplemented
function
的主体的行表达式 AST,则会出现错误。
示例:
返回函数 each [CustomerID] = "ALFKI"
主体的 AST
使用情况:
RowExpression.From(each [CustomerName] = "ALFKI")
输出:
[
Kind = "Binary",
Operator = "Equals",
Left = RowExpression.Column("CustomerName"),
Right =
[
Kind = "Constant",
Value = "ALFKI"
]
]