次の方法で共有


EntityShaperExpression コンストラクター

定義

オーバーロード

EntityShaperExpression(IEntityType, Expression, Boolean)

EntityShaperExpression クラスの新しいインスタンスを作成します。

EntityShaperExpression(IEntityType, Expression, Boolean, LambdaExpression)

EntityShaperExpression クラスの新しいインスタンスを作成します。

EntityShaperExpression(IEntityType, Expression, Boolean)

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)

パラメーター

entityType
IEntityType

図形を作成するエンティティの種類。

valueBufferExpression
Expression

エンティティのプロパティの値を取得する ValueBuffer の式。

nullable
Boolean

このエンティティ インスタンスを null にできるかどうかを示すブール値。

適用対象

EntityShaperExpression(IEntityType, Expression, Boolean, LambdaExpression)

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)

パラメーター

entityType
IEntityType

図形を作成するエンティティの種類。

valueBufferExpression
Expression

エンティティのプロパティの値を取得する ValueBuffer の式。

nullable
Boolean

このエンティティ インスタンスを null にできるかどうか。

materializationCondition
LambdaExpression

具体化するエンティティ型を決定する の Func<T,TResult> 式。

適用対象