Sdílet prostřednictvím


SelectExpression.ApplyCollectionJoin Metoda

Definice

Přetížení

ApplyCollectionJoin(Int32, Int32, Expression, INavigation, Type)
ApplyCollectionJoin(Int32, Int32, Expression, INavigationBase, Type, Boolean)

Použije dříve přidanou projekci kolekce.

ApplyCollectionJoin(Int32, Int32, Expression, INavigation, Type)

Zdroj:
SelectExpression.cs
Zdroj:
SelectExpression.cs
public System.Linq.Expressions.Expression ApplyCollectionJoin (int collectionIndex, int collectionId, System.Linq.Expressions.Expression innerShaper, Microsoft.EntityFrameworkCore.Metadata.INavigation navigation, Type elementType);
member this.ApplyCollectionJoin : int * int * System.Linq.Expressions.Expression * Microsoft.EntityFrameworkCore.Metadata.INavigation * Type -> System.Linq.Expressions.Expression
Public Function ApplyCollectionJoin (collectionIndex As Integer, collectionId As Integer, innerShaper As Expression, navigation As INavigation, elementType As Type) As Expression

Parametry

collectionIndex
Int32
collectionId
Int32
innerShaper
Expression
navigation
INavigation
elementType
Type

Návraty

Platí pro

ApplyCollectionJoin(Int32, Int32, Expression, INavigationBase, Type, Boolean)

Zdroj:
SelectExpression.cs

Použije dříve přidanou projekci kolekce.

public System.Linq.Expressions.Expression ApplyCollectionJoin (int collectionIndex, int collectionId, System.Linq.Expressions.Expression innerShaper, Microsoft.EntityFrameworkCore.Metadata.INavigationBase navigation, Type elementType, bool splitQuery = false);
member this.ApplyCollectionJoin : int * int * System.Linq.Expressions.Expression * Microsoft.EntityFrameworkCore.Metadata.INavigationBase * Type * bool -> System.Linq.Expressions.Expression
Public Function ApplyCollectionJoin (collectionIndex As Integer, collectionId As Integer, innerShaper As Expression, navigation As INavigationBase, elementType As Type, Optional splitQuery As Boolean = false) As Expression

Parametry

collectionIndex
Int32

Hodnota int specifikující, která kolekce z čekající kolekce se má použít.

collectionId
Int32

Hodnota int jedinečného ID kolekce přidružené k této projekci kolekce.

innerShaper
Expression

Výraz shaperu, který se má použít pro tvarování prvků této kolekce.

navigation
INavigationBase

Navigace přidružená k této kolekci, pokud existuje.

elementType
Type

Typ prvku v kolekci.

splitQuery
Boolean

Hodnota označující, jestli by se dotaz kolekce spustil s jiným příkazem DbCommand.

Návraty

Výraz, který představuje tvarování této kolekce.

Platí pro