OwnedNavigationBuilder.WithOwner(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
配置与所有者的关系。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder WithOwner (string ownerReference = default);
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder WithOwner (string? ownerReference = default);
abstract member WithOwner : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder
override this.WithOwner : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder
Public Overridable Function WithOwner (Optional ownerReference As String = Nothing) As OwnershipBuilder
参数
- ownerReference
- String
指向所有者的引用导航属性的名称。 如果为 null 或未指定,则没有指向所有者的导航属性。
返回
可用于配置关系的 对象。
注解
请注意,在没有参数的情况下调用此方法会将关系的这一端显式配置为不使用导航属性,即使实体类型上存在此类属性也是如此。 如果要使用导航属性,则必须指定它。