IMutableEntityType.RemoveIndex Methode

Definition

Überlädt

RemoveIndex(IMutableIndex)

Entfernt einen Index aus diesem Entitätstyp.

RemoveIndex(IReadOnlyIndex)

Entfernt einen Index aus diesem Entitätstyp.

RemoveIndex(IReadOnlyList<IProperty>)

Entfernt einen Index aus dieser Entität.

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

Entfernt einen Index aus diesem Entitätstyp.

RemoveIndex(IMutableIndex)

Entfernt einen Index aus diesem Entitätstyp.

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

Parameter

index
IMutableIndex

Der zu entfernende Index.

Gibt zurück

Der entfernte Index.

Gilt für:

RemoveIndex(IReadOnlyIndex)

Entfernt einen Index aus diesem Entitätstyp.

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

Parameter

index
IReadOnlyIndex

Der zu entfernende Index.

Gibt zurück

Der entfernte Index, oder null , wenn der Index nicht gefunden wurde.

Gilt für:

RemoveIndex(IReadOnlyList<IProperty>)

Entfernt einen Index aus dieser Entität.

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

Parameter

properties
IReadOnlyList<IProperty>

Die Eigenschaften, aus denen der Index besteht.

Gibt zurück

Der index, der entfernt wurde.

Gilt für:

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

Entfernt einen Index aus diesem Entitätstyp.

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

Parameter

properties
IReadOnlyList<IReadOnlyProperty>

Die Eigenschaften, aus denen der Index besteht.

Gibt zurück

Der entfernte Index, oder null , wenn der Index nicht gefunden wurde.

Gilt für: