Share via


IMutableEntityType.RemoveIndex メソッド

定義

オーバーロード

RemoveIndex(IMutableIndex)

このエンティティ型からインデックスを削除します。

RemoveIndex(IReadOnlyIndex)

このエンティティ型からインデックスを削除します。

RemoveIndex(IReadOnlyList<IProperty>)

このエンティティからインデックスを削除します。

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

このエンティティ型からインデックスを削除します。

RemoveIndex(IMutableIndex)

このエンティティ型からインデックスを削除します。

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

パラメーター

index
IMutableIndex

削除するインデックス。

戻り値

削除されたインデックス。

適用対象

RemoveIndex(IReadOnlyIndex)

このエンティティ型からインデックスを削除します。

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

パラメーター

index
IReadOnlyIndex

削除するインデックス。

戻り値

削除されたインデックス。インデックス null が見つからなかった場合は 。

適用対象

RemoveIndex(IReadOnlyList<IProperty>)

このエンティティからインデックスを削除します。

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

パラメーター

properties
IReadOnlyList<IProperty>

インデックスを構成するプロパティ。

戻り値

削除されたインデックス。

適用対象

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

このエンティティ型からインデックスを削除します。

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

パラメーター

properties
IReadOnlyList<IReadOnlyProperty>

インデックスを構成するプロパティ。

戻り値

削除されたインデックス。インデックス null が見つからなかった場合は 。

適用対象