IMutableModel.AddIgnored Method

Definition

Overloads

AddIgnored(String)

Marks the given entity type name as ignored, preventing conventions from adding a matching entity type to the model.

AddIgnored(Type)

Marks the given entity type as ignored, preventing conventions from adding a matching entity type to the model.

AddIgnored(String)

Marks the given entity type name as ignored, preventing conventions from adding a matching entity type to the model.

public void AddIgnored (string typeName);
public string AddIgnored (string typeName);
abstract member AddIgnored : string -> unit
abstract member AddIgnored : string -> string
Public Sub AddIgnored (typeName As String)
Public Function AddIgnored (typeName As String) As String

Parameters

typeName
String

The name of the entity type to be ignored.

Returns

The name of the ignored type.

Applies to

AddIgnored(Type)

Marks the given entity type as ignored, preventing conventions from adding a matching entity type to the model.

public string AddIgnored (Type type);
abstract member AddIgnored : Type -> string
Public Function AddIgnored (type As Type) As String

Parameters

type
Type

The entity type to be ignored.

Returns

The name of the ignored type.

Applies to