IConventionForeignKeyBuilder.IsRequiredDependent 方法

定义

配置是否需要依赖端 (即是否可以) 分配 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

参数

required
Nullable<Boolean>

一个值,该值指示依赖端是否是必需的。 null 重置为默认值。

fromDataAnnotation
Boolean

指示是否使用数据注释指定配置。

返回

如果配置了依赖端必需,则为同一生成器实例, null 否则为 。

适用于