Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Syntax
RowExpression.From(function as function) as record
About
Returns the abstract syntax tree (AST) for the body of function, normalized into a row expression:
- The function must be a 1-argument lambda.
- All references to the function parameter are replaced with
RowExpression.Row. - All references to columns are replaced with
RowExpression.Column(columnName). - The AST will be simplified to contain only nodes of the kinds:
ConstantInvocationUnaryBinaryIfFieldAccess
An error is raised if a row expression AST cannot be returned for the body of function.
This function is identical to ItemExpression.From.
Example
Returns the AST for the body of the function each [CustomerID] = "ALFKI".
Usage
RowExpression.From(each [CustomerName] = "ALFKI")
Output
[
Kind = "Binary",
Operator = "Equals",
Left = RowExpression.Column("CustomerName"),
Right =
[
Kind = "Constant",
Value = "ALFKI"
]
]