PropertyBuilder<TProperty>.IsRequired(Boolean) Method

Definition

Configures whether this property must have a value assigned or whether null is a valid value. A property can only be configured as non-required if it is based on a CLR type that can be assigned null.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> IsRequired (bool required = true);
override this.IsRequired : bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
Public Overridable Function IsRequired (Optional required As Boolean = true) As PropertyBuilder(Of TProperty)

Parameters

required
Boolean

A value indicating whether the property is required.

Returns

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

Applies to