IConventionForeignKeyBuilder.IsRequiredDependent Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Configures whether the dependent end is required (i.e. whether the principal to dependent navigation can
be assigned null
).
public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionForeignKeyBuilder IsRequiredDependent (bool? required, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionForeignKeyBuilder? IsRequiredDependent (bool? required, bool fromDataAnnotation = false);
abstract member IsRequiredDependent : Nullable<bool> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionForeignKeyBuilder
Public Function IsRequiredDependent (required As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As IConventionForeignKeyBuilder
Parameters
A value indicating whether the dependent end is required.
null
to reset to default.
- fromDataAnnotation
- Boolean
Indicates whether the configuration was specified using a data annotation.
Returns
The same builder instance if the dependent end requiredness was configured,
null
otherwise.
Applies to
Entity Framework