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