Share via


SelectExpression.AddCrossJoin Method

Definition

Overloads

AddCrossJoin(SelectExpression, Type)
Obsolete.

Adds the given SelectExpression to table sources using CROSS JOIN.

AddCrossJoin(SelectExpression)

Adds the given SelectExpression to table sources using CROSS JOIN.

AddCrossJoin(ShapedQueryExpression, Expression)

Adds the query expression of the given ShapedQueryExpression to table sources using CROSS JOIN and combine shapers.

AddCrossJoin(SelectExpression, Type)

Caution

Use the other overloads.

Adds the given SelectExpression to table sources using CROSS JOIN.

public void AddCrossJoin (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression, Type transparentIdentifierType);
[System.Obsolete("Use the other overloads.")]
public void AddCrossJoin (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression, Type transparentIdentifierType);
[System.Obsolete("Use the other overloads.")]
public void AddCrossJoin (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression, Type? transparentIdentifierType);
member this.AddCrossJoin : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * Type -> unit
[<System.Obsolete("Use the other overloads.")>]
member this.AddCrossJoin : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * Type -> unit
Public Sub AddCrossJoin (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

AddCrossJoin(SelectExpression)

Adds the given SelectExpression to table sources using CROSS JOIN.

public void AddCrossJoin (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression innerSelectExpression);
member this.AddCrossJoin : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression -> unit
Public Sub AddCrossJoin (innerSelectExpression As SelectExpression)

Parameters

innerSelectExpression
SelectExpression

A SelectExpression to join with.

Applies to

AddCrossJoin(ShapedQueryExpression, Expression)

Adds the query expression of the given ShapedQueryExpression to table sources using CROSS JOIN and combine shapers.

public System.Linq.Expressions.Expression AddCrossJoin (Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression innerSource, System.Linq.Expressions.Expression outerShaper);
member this.AddCrossJoin : Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression * System.Linq.Expressions.Expression -> System.Linq.Expressions.Expression
Public Function AddCrossJoin (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