IConventionPropertyBuilder.HasTypeMapping(CoreTypeMapping, Boolean) Method

Definition

Configures the CoreTypeMapping for this property.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder HasTypeMapping (Microsoft.EntityFrameworkCore.Storage.CoreTypeMapping typeMapping, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder? HasTypeMapping (Microsoft.EntityFrameworkCore.Storage.CoreTypeMapping? typeMapping, bool fromDataAnnotation = false);
abstract member HasTypeMapping : Microsoft.EntityFrameworkCore.Storage.CoreTypeMapping * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder
Public Function HasTypeMapping (typeMapping As CoreTypeMapping, Optional fromDataAnnotation As Boolean = false) As IConventionPropertyBuilder

Parameters

typeMapping
CoreTypeMapping

The type mapping, or null to remove any previously set type mapping.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the configuration was applied, null otherwise.

Applies to