RelationalEntityTypeBuilderExtensions.CanSetMappingStrategy Method

Definition

Returns a value indicating whether the hierarchy mapping strategy can be configured using the specified configuration source.

public static bool CanSetMappingStrategy (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, string? strategy, bool fromDataAnnotation = false);
static member CanSetMappingStrategy : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder * string * bool -> bool
<Extension()>
Public Function CanSetMappingStrategy (entityTypeBuilder As IConventionEntityTypeBuilder, strategy As String, Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

entityTypeBuilder
IConventionEntityTypeBuilder

The builder for the entity type being configured.

strategy
String

The mapping strategy for the derived types.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the configuration can be applied.

Remarks

See Database migrations for more information and examples.

Applies to