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