Share via


IConventionTypeBaseBuilder.Ignore(String, Boolean) Method

Definition

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

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

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