次の方法で共有


IConventionEntityType.RemoveIndex メソッド

定義

オーバーロード

RemoveIndex(IConventionIndex)

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

RemoveIndex(IReadOnlyIndex)

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

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

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

RemoveIndex(IConventionIndex)

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

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

パラメーター

index
IConventionIndex

削除するインデックス。

戻り値

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

適用対象

RemoveIndex(IReadOnlyIndex)

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

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

パラメーター

index
IReadOnlyIndex

削除するインデックス。

戻り値

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

適用対象

RemoveIndex(IReadOnlyList<IReadOnlyProperty>)

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

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

パラメーター

properties
IReadOnlyList<IReadOnlyProperty>

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

戻り値

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

適用対象