IConventionForeignKey.SetDependentToPrincipal 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SetDependentToPrincipal(MemberInfo, Boolean) |
设置指向主体实体的依赖实体类型的导航属性。 |
SetDependentToPrincipal(String, Boolean) |
设置指向主体实体的依赖实体类型的导航属性。 |
SetDependentToPrincipal(MemberInfo, Boolean)
设置指向主体实体的依赖实体类型的导航属性。
public Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation SetDependentToPrincipal (System.Reflection.MemberInfo property, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation? SetDependentToPrincipal (System.Reflection.MemberInfo? property, bool fromDataAnnotation = false);
abstract member SetDependentToPrincipal : System.Reflection.MemberInfo * bool -> Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation
Public Function SetDependentToPrincipal (property As MemberInfo, Optional fromDataAnnotation As Boolean = false) As IConventionNavigation
参数
- property
- MemberInfo
依赖类型上的导航属性。 传递 null
将导致未定义导航属性。
- fromDataAnnotation
- Boolean
指示配置是否是使用数据注释指定的。
返回
新建的导航属性。
适用于
SetDependentToPrincipal(String, Boolean)
设置指向主体实体的依赖实体类型的导航属性。
public Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation SetDependentToPrincipal (string name, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation? SetDependentToPrincipal (string? name, bool fromDataAnnotation = false);
abstract member SetDependentToPrincipal : string * bool -> Microsoft.EntityFrameworkCore.Metadata.IConventionNavigation
Public Function SetDependentToPrincipal (name As String, Optional fromDataAnnotation As Boolean = false) As IConventionNavigation
参数
- name
- String
依赖类型上的导航属性的名称。 传递 null
将导致未定义导航属性。
- fromDataAnnotation
- Boolean
指示配置是否是使用数据注释指定的。
返回
新建的导航属性。