Share via


LeftJoinExpression.Update Method

Definition

Overloads

Update(TableExpressionBase)

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(TableExpressionBase, 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(TableExpressionBase)

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.

[System.Runtime.CompilerServices.PreserveBaseOverrides]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression Update (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table);
[<System.Runtime.CompilerServices.PreserveBaseOverrides>]
override this.Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression
Public Overridable Function Update (table As TableExpressionBase) As LeftJoinExpression

Parameters

table
TableExpressionBase

The Table property of the result.

Returns

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

Attributes

Applies to

Update(TableExpressionBase, 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.LeftJoinExpression Update (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate);
[System.Runtime.CompilerServices.PreserveBaseOverrides]
public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression Update (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate);
abstract member Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression
override this.Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression
[<System.Runtime.CompilerServices.PreserveBaseOverrides>]
override this.Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.LeftJoinExpression
Public Overridable Function Update (table As TableExpressionBase, joinPredicate As SqlExpression) As LeftJoinExpression

Parameters

table
TableExpressionBase

The Table property of the result.

joinPredicate
SqlExpression

The JoinPredicate property of the result.

Returns

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

Attributes

Applies to