Share via


RelationalEntityShaperExpression.GenerateMaterializationCondition Method

Definition

Creates an expression of Func<T,TResult> to determine which entity type to materialize.

protected override System.Linq.Expressions.LambdaExpression GenerateMaterializationCondition (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, bool nullable);
override this.GenerateMaterializationCondition : Microsoft.EntityFrameworkCore.Metadata.IEntityType * bool -> System.Linq.Expressions.LambdaExpression
Protected Overrides Function GenerateMaterializationCondition (entityType As IEntityType, nullable As Boolean) As LambdaExpression

Parameters

entityType
IEntityType

The entity type to create materialization condition for.

nullable
Boolean

Whether this entity instance can be null.

Returns

An expression of Func<T,TResult> representing materilization condition for the entity type.

Applies to