Condividi tramite


IMutableEntityType.RemoveIndex Metodo

Definizione

Overload

RemoveIndex(IMutableIndex)

Rimuove un indice da questo tipo di entità.

RemoveIndex(IReadOnlyIndex)

Rimuove un indice da questo tipo di entità.

RemoveIndex(IReadOnlyList<IProperty>)

Rimuove un indice da questa entità.

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

Rimuove un indice da questo tipo di entità.

RemoveIndex(IMutableIndex)

Rimuove un indice da questo tipo di 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

Parametri

index
IMutableIndex

Indice da rimuovere.

Restituisce

Indice rimosso.

Si applica a

RemoveIndex(IReadOnlyIndex)

Rimuove un indice da questo tipo di 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

Parametri

index
IReadOnlyIndex

Indice da rimuovere.

Restituisce

Indice rimosso o null se l'indice non è stato trovato.

Si applica a

RemoveIndex(IReadOnlyList<IProperty>)

Rimuove un indice da questa 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

Parametri

properties
IReadOnlyList<IProperty>

Proprietà che costituiscono l'indice.

Restituisce

Indice rimosso.

Si applica a

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

Rimuove un indice da questo tipo di 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

Parametri

properties
IReadOnlyList<IReadOnlyProperty>

Proprietà che costituiscono l'indice.

Restituisce

Indice rimosso o null se l'indice non è stato trovato.

Si applica a