Sdílet prostřednictvím


EntityShaperExpression Konstruktory

Definice

Přetížení

EntityShaperExpression(IEntityType, Expression, Boolean)

Vytvoří novou instanci třídy EntityShaperExpression.

EntityShaperExpression(IEntityType, Expression, Boolean, LambdaExpression)

Vytvoří novou instanci třídy EntityShaperExpression.

EntityShaperExpression(IEntityType, Expression, Boolean)

Zdroj:
EntityShaperExpression.cs
Zdroj:
EntityShaperExpression.cs
Zdroj:
EntityShaperExpression.cs
Zdroj:
EntityShaperExpression.cs
Zdroj:
EntityShaperExpression.cs

Vytvoří novou instanci třídy EntityShaperExpression.

public EntityShaperExpression (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, System.Linq.Expressions.Expression valueBufferExpression, bool nullable);
new Microsoft.EntityFrameworkCore.Query.EntityShaperExpression : Microsoft.EntityFrameworkCore.Metadata.IEntityType * System.Linq.Expressions.Expression * bool -> Microsoft.EntityFrameworkCore.Query.EntityShaperExpression
Public Sub New (entityType As IEntityType, valueBufferExpression As Expression, nullable As Boolean)

Parametry

entityType
IEntityType

Typ entity, který se má tvarovat.

valueBufferExpression
Expression

Výraz ValueBuffer pro získání hodnot pro vlastnosti entity.

nullable
Boolean

Logická hodnota označující, jestli tato instance entity může mít hodnotu null.

Platí pro

EntityShaperExpression(IEntityType, Expression, Boolean, LambdaExpression)

Zdroj:
EntityShaperExpression.cs
Zdroj:
EntityShaperExpression.cs
Zdroj:
EntityShaperExpression.cs

Vytvoří novou instanci třídy EntityShaperExpression.

protected EntityShaperExpression (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, System.Linq.Expressions.Expression valueBufferExpression, bool nullable, System.Linq.Expressions.LambdaExpression materializationCondition);
protected EntityShaperExpression (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, System.Linq.Expressions.Expression valueBufferExpression, bool nullable, System.Linq.Expressions.LambdaExpression? materializationCondition);
new Microsoft.EntityFrameworkCore.Query.EntityShaperExpression : Microsoft.EntityFrameworkCore.Metadata.IEntityType * System.Linq.Expressions.Expression * bool * System.Linq.Expressions.LambdaExpression -> Microsoft.EntityFrameworkCore.Query.EntityShaperExpression
Protected Sub New (entityType As IEntityType, valueBufferExpression As Expression, nullable As Boolean, materializationCondition As LambdaExpression)

Parametry

entityType
IEntityType

Typ entity, který se má tvarovat.

valueBufferExpression
Expression

Výraz ValueBuffer pro získání hodnot pro vlastnosti entity.

nullable
Boolean

Určuje, jestli tato instance entity může mít hodnotu null.

materializationCondition
LambdaExpression

Výraz pro Func<T,TResult> určení typu entity, který se má materializovat.

Platí pro