Share via


IConventionDbFunctionBuilder.CanSetTypeMapping Method

Definition

Returns a value indicating whether the given return type mapping can be set for the database function.

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

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

true if the given return type mapping can be set for the database function.

Applies to