DbFunctionBuilder.HasStoreType(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.