IConventionDbFunctionBuilder.HasStoreType(String, Boolean) Method

Definition

Sets the store type of the function in the database.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionDbFunctionBuilder HasStoreType (string storeType, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionDbFunctionBuilder? HasStoreType (string? storeType, bool fromDataAnnotation = false);
abstract member HasStoreType : string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionDbFunctionBuilder
Public Function HasStoreType (storeType As String, Optional fromDataAnnotation As Boolean = false) As IConventionDbFunctionBuilder

Parameters

storeType
String

The store type 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