다음을 통해 공유


OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>.Ignore 메서드

정의

오버로드

Ignore(Expression<Func<TDependentEntity,Object>>)

엔터티 형식에서 지정된 속성을 제외합니다. 이 메서드는 일반적으로 규칙에 의해 추가 된 소유 된 엔터티 형식에서 속성 또는 탐색을 제거 하는 데 사용 됩니다.

Ignore(String)

엔터티 형식에서 지정된 속성을 제외합니다. 이 메서드는 일반적으로 규칙에 의해 추가 된 소유 된 엔터티 형식에서 속성 또는 탐색을 제거 하는 데 사용 됩니다.

Ignore(Expression<Func<TDependentEntity,Object>>)

엔터티 형식에서 지정된 속성을 제외합니다. 이 메서드는 일반적으로 규칙에 의해 추가 된 소유 된 엔터티 형식에서 속성 또는 탐색을 제거 하는 데 사용 됩니다.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TEntity,TDependentEntity> Ignore (System.Linq.Expressions.Expression<Func<TDependentEntity,object>> propertyExpression);
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> Ignore (System.Linq.Expressions.Expression<Func<TDependentEntity,object?>> propertyExpression);
override this.Ignore : System.Linq.Expressions.Expression<Func<'DependentEntity, obj>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)>
override this.Ignore : System.Linq.Expressions.Expression<Func<'DependentEntity, obj>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function Ignore (propertyExpression As Expression(Of Func(Of TDependentEntity, Object))) As OwnedNavigationBuilder(Of TEntity, TDependentEntity)
Public Overridable Function Ignore (propertyExpression As Expression(Of Func(Of TDependentEntity, Object))) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)

매개 변수

propertyExpression
Expression<Func<TDependentEntity,Object>>

무시할 속성(blog => blog.Url)을 나타내는 람다 식입니다.

반환

OwnedNavigationBuilder<TEntity,TDependentEntity>

적용 대상

Ignore(String)

엔터티 형식에서 지정된 속성을 제외합니다. 이 메서드는 일반적으로 규칙에 의해 추가 된 소유 된 엔터티 형식에서 속성 또는 탐색을 제거 하는 데 사용 됩니다.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TEntity,TDependentEntity> Ignore (string propertyName);
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> Ignore (string propertyName);
override this.Ignore : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)>
override this.Ignore : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)>
Public Overridable Function Ignore (propertyName As String) As OwnedNavigationBuilder(Of TEntity, TDependentEntity)
Public Overridable Function Ignore (propertyName As String) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)

매개 변수

propertyName
String

엔터티 형식에서 제거할 속성의 이름입니다.

반환

OwnedNavigationBuilder<TEntity,TDependentEntity>

적용 대상