PredicateJoinExpressionBase.Update(TableExpressionBase, SqlExpression) 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.
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.PredicateJoinExpressionBase Update (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression joinPredicate);
override this.Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase
Public MustOverride Function Update (table As TableExpressionBase, joinPredicate As SqlExpression) As PredicateJoinExpressionBase
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.