Compartir a través de


CollectionShaperExpression Constructores

Definición

Sobrecargas

CollectionShaperExpression(Expression, Expression, INavigation, Type)

Source:
CollectionShaperExpression.cs
Source:
CollectionShaperExpression.cs
public CollectionShaperExpression(System.Linq.Expressions.Expression projection, System.Linq.Expressions.Expression innerShaper, Microsoft.EntityFrameworkCore.Metadata.INavigation navigation, Type elementType);
new Microsoft.EntityFrameworkCore.Query.CollectionShaperExpression : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * Microsoft.EntityFrameworkCore.Metadata.INavigation * Type -> Microsoft.EntityFrameworkCore.Query.CollectionShaperExpression
Public Sub New (projection As Expression, innerShaper As Expression, navigation As INavigation, elementType As Type)

Parámetros

projection
Expression
innerShaper
Expression
navigation
INavigation
elementType
Type

Se aplica a

CollectionShaperExpression(Expression, Expression, INavigationBase, Type)

Source:
CollectionShaperExpression.cs
Source:
CollectionShaperExpression.cs

Crea una nueva instancia de la clase CollectionShaperExpression.

public CollectionShaperExpression(System.Linq.Expressions.Expression projection, System.Linq.Expressions.Expression innerShaper, Microsoft.EntityFrameworkCore.Metadata.INavigationBase navigation, Type elementType);
public CollectionShaperExpression(System.Linq.Expressions.Expression projection, System.Linq.Expressions.Expression innerShaper, Microsoft.EntityFrameworkCore.Metadata.INavigationBase? navigation, Type elementType);
new Microsoft.EntityFrameworkCore.Query.CollectionShaperExpression : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * Microsoft.EntityFrameworkCore.Metadata.INavigationBase * Type -> Microsoft.EntityFrameworkCore.Query.CollectionShaperExpression
Public Sub New (projection As Expression, innerShaper As Expression, navigation As INavigationBase, elementType As Type)

Parámetros

projection
Expression

Expresión que vuelve a reentrenar cómo obtener el valor de la consulta para crear la colección.

innerShaper
Expression

Expresión usada para crear elementos individuales de la colección.

navigation
INavigationBase

Navegación asociada a esta colección, si existe.

elementType
Type

Tipo clr de elementos individuales de la colección.

Se aplica a