IConventionEntityTypeBuilder.Ignore(String, Boolean) Method

Definition

Excludes the given property from the entity type and prevents conventions from adding a matching property or navigation to the type.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder Ignore (string memberName, bool fromDataAnnotation = false);
public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder? Ignore (string memberName, bool fromDataAnnotation = false);
abstract member Ignore : string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder
Public Function Ignore (memberName As String, Optional fromDataAnnotation As Boolean = false) As IConventionEntityTypeBuilder

Parameters

memberName
String

The name of the member to be removed.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance so that additional configuration calls can be chained if the given member was ignored, null otherwise.

Applies to