SelectExpression.AddOuterApply 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
AddOuterApply(ShapedQueryExpression, Expression) |
Adds the query expression of the given ShapedQueryExpression to table sources using OUTER APPLY and combine shapers. |
AddOuterApply(SelectExpression, Type) |
Obsolete.
Adds the given SelectExpression to table sources using OUTER APPLY. |
AddOuterApply(SelectExpression) |
Adds the given SelectExpression to table sources using OUTER APPLY. |
AddOuterApply(ShapedQueryExpression, Expression)
Adds the query expression of the given ShapedQueryExpression to table sources using OUTER APPLY and combine shapers.
public System.Linq.Expressions.Expression AddOuterApply (Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression innerSource, System.Linq.Expressions.Expression outerShaper);
member this.AddOuterApply : Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression * System.Linq.Expressions.Expression -> System.Linq.Expressions.Expression
Public Function AddOuterApply (innerSource As ShapedQueryExpression, outerShaper As Expression) As Expression
Parameters
- innerSource
- ShapedQueryExpression
A ShapedQueryExpression to join with.
- outerShaper
- Expression
An expression for outer shaper.
Returns
An expression which shapes the result of this join.
Applies to
AddOuterApply(SelectExpression, Type)
Caution
Use the other overloads.
Adds the given SelectExpression to table sources using OUTER APPLY.
public void AddOuterApply (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression, Type transparentIdentifierType);
[System.Obsolete("Use the other overloads.")]
public void AddOuterApply (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression, Type transparentIdentifierType);
[System.Obsolete("Use the other overloads.")]
public void AddOuterApply (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression, Type? transparentIdentifierType);
member this.AddOuterApply : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * Type -> unit
[<System.Obsolete("Use the other overloads.")>]
member this.AddOuterApply : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * Type -> unit
Public Sub AddOuterApply (innerSelectExpression As SelectExpression, transparentIdentifierType As Type)
Parameters
- innerSelectExpression
- SelectExpression
A SelectExpression to join with.
- transparentIdentifierType
- Type
The type of the result generated after performing the join.
- Attributes
Applies to
AddOuterApply(SelectExpression)
Adds the given SelectExpression to table sources using OUTER APPLY.
public void AddOuterApply (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression);
member this.AddOuterApply : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression -> unit
Public Sub AddOuterApply (innerSelectExpression As SelectExpression)
Parameters
- innerSelectExpression
- SelectExpression
A SelectExpression to join with.
Applies to
Entity Framework