IConventionTypeBase.AddIgnored(String, Boolean) Method

Definition

Marks the given member name as ignored, preventing conventions from adding a matching property or navigation to the type.

public void AddIgnored (string memberName, bool fromDataAnnotation = false);
public string AddIgnored (string memberName, bool fromDataAnnotation = false);
public string? AddIgnored (string memberName, bool fromDataAnnotation = false);
abstract member AddIgnored : string * bool -> unit
abstract member AddIgnored : string * bool -> string
Public Sub AddIgnored (memberName As String, Optional fromDataAnnotation As Boolean = false)
Public Function AddIgnored (memberName As String, Optional fromDataAnnotation As Boolean = false) As String

Parameters

memberName
String

The name of the member to be ignored.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The ignored member name.

Applies to