SelectExpression.AddCrossApply 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
AddCrossApply(SelectExpression) |
Adds the given SelectExpression to table sources using CROSS APPLY. |
AddCrossApply(ShapedQueryExpression, Expression) |
Adds the query expression of the given ShapedQueryExpression to table sources using CROSS APPLY and combine shapers. |
AddCrossApply(SelectExpression, Type) |
Obsolete.
Adds the given SelectExpression to table sources using CROSS APPLY. |
AddCrossApply(SelectExpression)
Adds the given SelectExpression to table sources using CROSS APPLY.
public void AddCrossApply (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression);
member this.AddCrossApply : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression -> unit
Public Sub AddCrossApply (innerSelectExpression As SelectExpression)
Parameters
- innerSelectExpression
- SelectExpression
A SelectExpression to join with.
Applies to
AddCrossApply(ShapedQueryExpression, Expression)
Adds the query expression of the given ShapedQueryExpression to table sources using CROSS APPLY and combine shapers.
public System.Linq.Expressions.Expression AddCrossApply (Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression innerSource, System.Linq.Expressions.Expression outerShaper);
member this.AddCrossApply : Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression * System.Linq.Expressions.Expression -> System.Linq.Expressions.Expression
Public Function AddCrossApply (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
AddCrossApply(SelectExpression, Type)
Caution
Use the other overloads.
Adds the given SelectExpression to table sources using CROSS APPLY.
public void AddCrossApply (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression, Type transparentIdentifierType);
[System.Obsolete("Use the other overloads.")]
public void AddCrossApply (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression, Type transparentIdentifierType);
[System.Obsolete("Use the other overloads.")]
public void AddCrossApply (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression, Type? transparentIdentifierType);
member this.AddCrossApply : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * Type -> unit
[<System.Obsolete("Use the other overloads.")>]
member this.AddCrossApply : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * Type -> unit
Public Sub AddCrossApply (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
Entity Framework