OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>.WithOwner 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
WithOwner(Expression<Func<TDependentEntity,TOwnerEntity>>) |
소유자와의 관계를 구성합니다. |
WithOwner(String) |
소유자와의 관계를 구성합니다. |
WithOwner(Expression<Func<TDependentEntity,TOwnerEntity>>)
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
소유자와의 관계를 구성합니다.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder<TOwnerEntity,TDependentEntity> WithOwner (System.Linq.Expressions.Expression<Func<TDependentEntity,TOwnerEntity?>>? referenceExpression);
override this.WithOwner : System.Linq.Expressions.Expression<Func<'DependentEntity, 'OwnerEntity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function WithOwner (referenceExpression As Expression(Of Func(Of TDependentEntity, TOwnerEntity))) As OwnershipBuilder(Of TOwnerEntity, TDependentEntity)
매개 변수
- referenceExpression
- Expression<Func<TDependentEntity,TOwnerEntity>>
소유자(blog => blog.BlogInfo
)를 가리키는 참조 탐색 속성을 나타내는 람다 식입니다. 속성을 지정하지 않으면 소유자를 가리키는 탐색 속성 없이 관계가 구성됩니다.
반환
OwnershipBuilder<TOwnerEntity,TDependentEntity>
관계를 구성하는 데 사용할 수 있는 개체입니다.
설명
매개 변수 없이 이 메서드를 호출하면 엔터티 형식에 이러한 속성이 있더라도 탐색 속성을 사용하지 않고 관계의 이 쪽을 명시적으로 구성합니다. 탐색 속성을 사용할 경우 지정해야 합니다.
적용 대상
WithOwner(String)
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
소유자와의 관계를 구성합니다.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder<TEntity,TDependentEntity> WithOwner (string ownerReference = default);
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder<TOwnerEntity,TDependentEntity> WithOwner (string? ownerReference = default);
override this.WithOwner : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)>
override this.WithOwner : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnershipBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function WithOwner (Optional ownerReference As String = Nothing) As OwnershipBuilder(Of TEntity, TDependentEntity)
Public Overridable Function WithOwner (Optional ownerReference As String = Nothing) As OwnershipBuilder(Of TOwnerEntity, TDependentEntity)
매개 변수
- ownerReference
- String
소유자를 가리키는 참조 탐색 속성의 이름입니다. null을 지정하거나 지정하지 않으면 소유자를 가리키는 탐색 속성이 없습니다.
반환
OwnershipBuilder<TOwnerEntity,TDependentEntity>
관계를 구성하는 데 사용할 수 있는 개체입니다.
설명
매개 변수 없이 이 메서드를 호출하면 엔터티 형식에 이러한 속성이 있더라도 탐색 속성을 사용하지 않고 관계의 이 쪽을 명시적으로 구성합니다. 탐색 속성을 사용할 경우 지정해야 합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Entity Framework