IConventionDbFunctionBuilder.HasTypeMapping Method

Definition

Sets the return type mapping of the database function.

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

Parameters

typeMapping
RelationalTypeMapping

The return type mapping of the function in the database.

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