Partager via


IMutableEntityType.RemoveIndex Méthode

Définition

Surcharges

RemoveIndex(IMutableIndex)

Supprime un index de ce type d’entité.

RemoveIndex(IReadOnlyIndex)

Supprime un index de ce type d’entité.

RemoveIndex(IReadOnlyList<IProperty>)

Supprime un index de cette entité.

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

Supprime un index de ce type d’entité.

RemoveIndex(IMutableIndex)

Supprime un index de ce type d’entité.

public void RemoveIndex (Microsoft.EntityFrameworkCore.Metadata.IMutableIndex index);
public Microsoft.EntityFrameworkCore.Metadata.IMutableIndex RemoveIndex (Microsoft.EntityFrameworkCore.Metadata.IMutableIndex index);
abstract member RemoveIndex : Microsoft.EntityFrameworkCore.Metadata.IMutableIndex -> unit
abstract member RemoveIndex : Microsoft.EntityFrameworkCore.Metadata.IMutableIndex -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Sub RemoveIndex (index As IMutableIndex)
Public Function RemoveIndex (index As IMutableIndex) As IMutableIndex

Paramètres

index
IMutableIndex

Index à supprimer.

Retours

Index supprimé.

S’applique à

RemoveIndex(IReadOnlyIndex)

Supprime un index de ce type d’entité.

public Microsoft.EntityFrameworkCore.Metadata.IMutableIndex? RemoveIndex (Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex index);
abstract member RemoveIndex : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Function RemoveIndex (index As IReadOnlyIndex) As IMutableIndex

Paramètres

index
IReadOnlyIndex

Index à supprimer.

Retours

Index supprimé ou null si l’index est introuvable.

S’applique à

RemoveIndex(IReadOnlyList<IProperty>)

Supprime un index de cette entité.

public Microsoft.EntityFrameworkCore.Metadata.IMutableIndex RemoveIndex (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> properties);
abstract member RemoveIndex : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IProperty> -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Function RemoveIndex (properties As IReadOnlyList(Of IProperty)) As IMutableIndex

Paramètres

properties
IReadOnlyList<IProperty>

Propriétés qui composent l’index.

Retours

Index supprimé.

S’applique à

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

Supprime un index de ce type d’entité.

public Microsoft.EntityFrameworkCore.Metadata.IMutableIndex? RemoveIndex (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> properties);
abstract member RemoveIndex : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Function RemoveIndex (properties As IReadOnlyList(Of IReadOnlyProperty)) As IMutableIndex

Paramètres

properties
IReadOnlyList<IReadOnlyProperty>

Propriétés qui composent l’index.

Retours

Index supprimé ou null si l’index est introuvable.

S’applique à