RelationalCollectionShaperExpression.Update 方法

定义

创建一个新的表达式,它类似于此表达式,但使用所提供的子级。 如果所有子级均相同,它将返回此表达式。

public virtual Microsoft.EntityFrameworkCore.Query.RelationalCollectionShaperExpression Update (System.Linq.Expressions.Expression parentIdentifier, System.Linq.Expressions.Expression outerIdentifier, System.Linq.Expressions.Expression selfIdentifier, System.Linq.Expressions.Expression innerShaper);
abstract member Update : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.RelationalCollectionShaperExpression
override this.Update : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.RelationalCollectionShaperExpression
Public Overridable Function Update (parentIdentifier As Expression, outerIdentifier As Expression, selfIdentifier As Expression, innerShaper As Expression) As RelationalCollectionShaperExpression

参数

parentIdentifier
Expression

结果的 ParentIdentifier 属性。

outerIdentifier
Expression

结果的 OuterIdentifier 属性。

selfIdentifier
Expression

结果的 SelfIdentifier 属性。

innerShaper
Expression

结果的 InnerShaper 属性。

返回

此表达式(如果未更改任何子级),或带有更新的子级的表达式。

适用于