IConventionProperty.SetIsNullable(Nullable<Boolean>, Boolean) Method

Definition

Sets a value indicating whether this property can contain null.

public void SetIsNullable (bool? nullable, bool fromDataAnnotation = false);
public bool? SetIsNullable (bool? nullable, bool fromDataAnnotation = false);
abstract member SetIsNullable : Nullable<bool> * bool -> unit
abstract member SetIsNullable : Nullable<bool> * bool -> Nullable<bool>
Public Sub SetIsNullable (nullable As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false)
Public Function SetIsNullable (nullable As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Boolean)

Parameters

nullable
Nullable<Boolean>

A value indicating whether this property can contain null. null to reset to default.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The configured value.

Applies to