RelationalGroupByResultExpression.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.
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.RelationalGroupByResultExpression Update (System.Linq.Expressions.Expression keyIdentifier, System.Linq.Expressions.Expression keyShaper, System.Linq.Expressions.Expression elementShaper);
abstract member Update : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.RelationalGroupByResultExpression
override this.Update : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.RelationalGroupByResultExpression
Public Overridable Function Update (keyIdentifier As Expression, keyShaper As Expression, elementShaper As Expression) As RelationalGroupByResultExpression
Parameters
- keyIdentifier
- Expression
The KeyIdentifier property of the result.
- keyShaper
- Expression
The KeyShaper property of the result.
- elementShaper
- Expression
The ElementShaper property of the result.
Returns
This expression if no children changed, or an expression with the updated children.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework