Share via


JsonScalarExpression.Update Method

Definition

Overloads

Update(ColumnExpression)

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.

Update(SqlExpression)

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.

Update(ColumnExpression)

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.JsonScalarExpression Update (Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnExpression jsonColumn);
abstract member Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression
override this.Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression
Public Overridable Function Update (jsonColumn As ColumnExpression) As JsonScalarExpression

Parameters

jsonColumn
ColumnExpression

The JsonColumn property of the result.

Returns

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

Applies to

Update(SqlExpression)

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.JsonScalarExpression Update (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression json);
abstract member Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression
override this.Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression
Public Overridable Function Update (json As SqlExpression) As JsonScalarExpression

Parameters

json
SqlExpression

The Json property of the result.

Returns

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

Applies to