Compartilhar via


IMutableEntityType.RemoveIndex Método

Definição

Sobrecargas

RemoveIndex(IMutableIndex)

Remove um índice desse tipo de entidade.

RemoveIndex(IReadOnlyIndex)

Remove um índice desse tipo de entidade.

RemoveIndex(IReadOnlyList<IProperty>)

Remove um índice dessa entidade.

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

Remove um índice desse tipo de entidade.

RemoveIndex(IMutableIndex)

Remove um índice desse tipo de entidade.

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

Parâmetros

index
IMutableIndex

O índice a ser removido.

Retornos

O índice removido.

Aplica-se a

RemoveIndex(IReadOnlyIndex)

Remove um índice desse tipo de entidade.

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

Parâmetros

index
IReadOnlyIndex

O índice a ser removido.

Retornos

O índice removido ou null se o índice não foi encontrado.

Aplica-se a

RemoveIndex(IReadOnlyList<IProperty>)

Remove um índice dessa entidade.

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

Parâmetros

properties
IReadOnlyList<IProperty>

As propriedades que compõem o índice.

Retornos

O índice que foi removido.

Aplica-se a

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

Remove um índice desse tipo de entidade.

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

Parâmetros

properties
IReadOnlyList<IReadOnlyProperty>

As propriedades que compõem o índice.

Retornos

O índice removido ou null se o índice não foi encontrado.

Aplica-se a