ConventionModelExtensions.IsIgnored Metoda

Definice

Přetížení

IsIgnored(IConventionModel, String)

Určuje, jestli je název daného typu entity ignorován.

IsIgnored(IConventionModel, Type)

Určuje, jestli je daný typ entity ignorován.

IsIgnored(IConventionModel, String)

Určuje, jestli je název daného typu entity ignorován.

public static bool IsIgnored (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, string typeName);
static member IsIgnored : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * string -> bool
<Extension()>
Public Function IsIgnored (model As IConventionModel, typeName As String) As Boolean

Parametry

model
IConventionModel

Model, který má zkontrolovat ignorovaný typ.

typeName
String

Název typu entity, který lze ignorovat.

Návraty

true pokud je název daného typu entity ignorován.

Platí pro

IsIgnored(IConventionModel, Type)

Určuje, jestli je daný typ entity ignorován.

public static bool IsIgnored (this Microsoft.EntityFrameworkCore.Metadata.IConventionModel model, Type type);
static member IsIgnored : Microsoft.EntityFrameworkCore.Metadata.IConventionModel * Type -> bool
<Extension()>
Public Function IsIgnored (model As IConventionModel, type As Type) As Boolean

Parametry

model
IConventionModel

Model, který má zkontrolovat ignorovaný typ.

type
Type

Typ entity, který může být ignorován.

Návraty

true pokud je daný typ entity ignorován.

Platí pro