EntityTypeBuilder<TEntity>.Ignore Method

Definition

Overloads

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

Excludes the given property from the entity type. This method is typically used to remove properties or navigations from the entity type that were added by convention.

Ignore(String)

Excludes the given property from the entity type. This method is typically used to remove properties or navigations from the entity type that were added by convention.

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

Excludes the given property from the entity type. This method is typically used to remove properties or navigations from the entity type that were added by convention.

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

Parameters

propertyExpression
Expression<Func<TEntity,Object>>

A lambda expression representing the property to be ignored (blog => blog.Url).

Returns

Applies to

Ignore(String)

Excludes the given property from the entity type. This method is typically used to remove properties or navigations from the entity type that were added by convention.

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> Ignore (string propertyName);
override this.Ignore : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)>
Public Overridable Function Ignore (propertyName As String) As EntityTypeBuilder(Of TEntity)

Parameters

propertyName
String

The name of the property to be removed from the entity type.

Returns

Applies to