IConventionDbFunctionParameterBuilder.HasTypeMapping Method

Definition

Sets the RelationalTypeMapping of the function parameter.

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

Parameters

typeMapping
RelationalTypeMapping

The type mapping to use for the function parameter.

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