Share via


SqlUnaryExpression.Update(SqlExpression) Method

Definition

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression Update (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression operand);
abstract member Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression
override this.Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression
Public Overridable Function Update (operand As SqlExpression) As SqlUnaryExpression

Parameters

operand
SqlExpression

The Operand property of the result.

Returns

This expression if no children changed, or an expression with the updated children.

Applies to