DbFunctionBuilder.HasStoreType(String) Method

Definition

Sets the return store type of the database function.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilder HasStoreType (string storeType);
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilder HasStoreType (string? storeType);
abstract member HasStoreType : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilder
override this.HasStoreType : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilder
Public Overridable Function HasStoreType (storeType As String) As DbFunctionBuilder

Parameters

storeType
String

The return store type of the function in the database.

Returns

The same builder instance so that multiple configuration calls can be chained.

Remarks

See Database functions for more information and examples.

Applies to