JsonScalarExpression.Update Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
- Source:
- JsonScalarExpression.cs
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)
- Source:
- JsonScalarExpression.cs
- Source:
- JsonScalarExpression.cs
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
Entity Framework