Partager via


SelectExpression.ApplyCollectionJoin Méthode

Définition

Surcharges

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

Applique la projection de collection précédemment ajoutée.

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

Source:
SelectExpression.cs
Source:
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

Paramètres

collectionIndex
Int32
collectionId
Int32
innerShaper
Expression
navigation
INavigation
elementType
Type

Retours

S’applique à

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

Source:
SelectExpression.cs

Applique la projection de collection précédemment ajoutée.

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

Paramètres

collectionIndex
Int32

Valeur int qui permet de déterminer la collection à appliquer à partir de la collection en attente.

collectionId
Int32

Valeur int de l’ID de collection unique associé à cette projection de collection.

innerShaper
Expression

Expression de modélisateur à utiliser pour mettre en forme les éléments de cette collection.

navigation
INavigationBase

Navigation associée à cette collection, le cas échéant.

elementType
Type

Type de l'élément de la collection.

splitQuery
Boolean

Valeur indiquant si la requête de collection est exécutée avec une dbCommand différente.

Retours

Expression qui représente la mise en forme de cette collection.

S’applique à