Share via


JoinExpressionBase.Update(TableExpressionBase) 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 abstract Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase Update (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table);
abstract member Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.JoinExpressionBase
Public MustOverride Function Update (table As TableExpressionBase) As JoinExpressionBase

Parameters

table
TableExpressionBase

The Table property of the result.

Returns

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

Applies to