EntityTypeBuilder.Ignore(String) Method

Definition

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

public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder Ignore (string propertyName);
abstract member Ignore : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
override this.Ignore : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
Public Overridable Function Ignore (propertyName As String) As EntityTypeBuilder

Parameters

propertyName
String

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

Returns

Applies to