共用方式為


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>>

Lambda 運算式,表示要忽略 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>

適用於