IConventionDbFunctionBuilder.HasSchema(String, Boolean) Method

Definition

Sets the schema of the database function.

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

Parameters

schema
String

The schema 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