IConventionEntityType.RemoveKey 方法

定義

多載

RemoveKey(IConventionKey)

從這個實體類型中移除主要或替代索引鍵。

RemoveKey(IReadOnlyKey)

從這個實體類型中移除主要或替代索引鍵。

RemoveKey(IReadOnlyList<IReadOnlyProperty>)

從這個實體類型中移除主要或替代索引鍵。

RemoveKey(IConventionKey)

從這個實體類型中移除主要或替代索引鍵。

public void RemoveKey (Microsoft.EntityFrameworkCore.Metadata.IConventionKey key);
public Microsoft.EntityFrameworkCore.Metadata.IConventionKey RemoveKey (Microsoft.EntityFrameworkCore.Metadata.IConventionKey key);
abstract member RemoveKey : Microsoft.EntityFrameworkCore.Metadata.IConventionKey -> unit
abstract member RemoveKey : Microsoft.EntityFrameworkCore.Metadata.IConventionKey -> Microsoft.EntityFrameworkCore.Metadata.IConventionKey
Public Sub RemoveKey (key As IConventionKey)
Public Function RemoveKey (key As IConventionKey) As IConventionKey

參數

key
IConventionKey

要移除的索引鍵。

傳回

已移除的索引鍵。

適用於

RemoveKey(IReadOnlyKey)

從這個實體類型中移除主要或替代索引鍵。

public Microsoft.EntityFrameworkCore.Metadata.IConventionKey? RemoveKey (Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey key);
abstract member RemoveKey : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey -> Microsoft.EntityFrameworkCore.Metadata.IConventionKey
Public Function RemoveKey (key As IReadOnlyKey) As IConventionKey

參數

key
IReadOnlyKey

要移除的索引鍵。

傳回

已移除的索引鍵,如果找不到金鑰,則 null 為 。

適用於

RemoveKey(IReadOnlyList<IReadOnlyProperty>)

從這個實體類型中移除主要或替代索引鍵。

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

參數

properties
IReadOnlyList<IReadOnlyProperty>

組成索引鍵的屬性。

傳回

已移除的索引鍵。

適用於