Share via


StructuralTypeShaperExpression.GenerateMaterializationCondition Method

Definition

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

protected virtual System.Linq.Expressions.LambdaExpression GenerateMaterializationCondition (Microsoft.EntityFrameworkCore.Metadata.ITypeBase type, bool nullable);
abstract member GenerateMaterializationCondition : Microsoft.EntityFrameworkCore.Metadata.ITypeBase * bool -> System.Linq.Expressions.LambdaExpression
override this.GenerateMaterializationCondition : Microsoft.EntityFrameworkCore.Metadata.ITypeBase * bool -> System.Linq.Expressions.LambdaExpression
Protected Overridable Function GenerateMaterializationCondition (type As ITypeBase, nullable As Boolean) As LambdaExpression

Parameters

type
ITypeBase

The type to create materialization condition for.

nullable
Boolean

Whether this instance can be null.

Returns

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

Applies to