共用方式為


ItemExpression.From

語法

ItemExpression.From(function as function) as record

關於

傳回 function 主體的抽象語法樹 (AST) (已標準化為「項目運算式」):

  • 此函式必須是只有 1 個引數的 Lambda。
  • 所有對此函式參數的參考都會取代為 ItemExpression.Item
  • AST 會簡化為只包含下列種類的節點:
    • Constant
    • Invocation
    • Unary
    • Binary
    • If
    • FieldAccess

如果無法針對 function 主體傳回項目運算式 AST,就會引發錯誤。

此函式與 RowExpression.From 相同。

範例 1

傳回函式 each _ <> null 主體的 AST。

使用方式

ItemExpression.From(each _ <> null)

輸出

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