DbFunctionParameterBuilder.HasStoreType(String) Method

Definition

Sets the store type of the function parameter in the database.

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

Parameters

storeType
String

The store type of the function parameter in the database.

Returns

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

Remarks

See Database functions for more information and examples.

Applies to