ReferenceCollectionBuilder<TPrincipalEntity,TDependentEntity>.IsRequired Method

Definition

Configures whether this is a required relationship (i.e. whether the foreign key property(s) can be assigned null).

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.ReferenceCollectionBuilder<TPrincipalEntity,TDependentEntity> IsRequired (bool required = true);
override this.IsRequired : bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.ReferenceCollectionBuilder<'PrincipalEntity, 'DependentEntity (requires 'PrincipalEntity : null and 'DependentEntity : null)>
Public Overridable Function IsRequired (Optional required As Boolean = true) As ReferenceCollectionBuilder(Of TPrincipalEntity, TDependentEntity)

Parameters

required
Boolean

A value indicating whether this is a required relationship.

Returns

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

Applies to