DbFunctionBuilder.IsNullable(Boolean) Method

Definition

Marks whether the database function can return null value.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilderBase IsNullable (bool nullable = true);
abstract member IsNullable : bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilderBase
override this.IsNullable : bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.DbFunctionBuilderBase
Public Overridable Function IsNullable (Optional nullable As Boolean = true) As DbFunctionBuilderBase

Parameters

nullable
Boolean

The value indicating whether the database function can return null.

Returns

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

Remarks

See Database functions for more information and examples.

Applies to