ItemExpression.From

ItemExpression.From(function as function) as record

返回 function 主体的 AST,规范化为项表达式:

  • 函数必须为 1 个参数的 lambda。
  • 对函数参数的所有引用已替换为 ItemExpression.Item
  • AST 将简化为仅包含以下类型的节点:
    • Constant
    • Invocation
    • Unary
    • Binary
    • If
    • FieldAccess
    • NotImplemented

如果无法返回 function 的主体的项表达式 AST,则会出现错误。

示例:

返回函数 each _ <> null 主体的 AST

使用情况:

ItemExpression.From(each _ <> null)

输出:
[
    Kind = "Binary",
    Operator = "NotEquals",
    Left = ItemExpression.Item,
    Right =
    [
        Kind = "Constant",
        Value = null
    ]
]

results matching ""

    No results matching ""