共用方式為


IMigrationsAnnotationProvider.For 方法

定義

多載

For(ICheckConstraint)

取得指定 ICheckConstraint 之 的提供者特定移轉批註。

For(IEntityType)

取得指定 IEntityType 之 的提供者特定移轉批註。

For(IForeignKey)

取得指定 IForeignKey 之 的提供者特定移轉批註。

For(IIndex)

取得指定 IIndex 之 的提供者特定移轉批註。

For(IKey)

取得指定 IKey 之 的提供者特定移轉批註。

For(IModel)

取得指定 IModel 之 的提供者特定移轉批註。

For(IProperty)

取得指定 IProperty 之 的提供者特定移轉批註。

For(ISequence)

取得指定 ISequence 之 的提供者特定移轉批註。

For(ICheckConstraint)

取得指定 ICheckConstraint 之 的提供者特定移轉批註。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> For (Microsoft.EntityFrameworkCore.Metadata.ICheckConstraint checkConstraint);
abstract member For : Microsoft.EntityFrameworkCore.Metadata.ICheckConstraint -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function For (checkConstraint As ICheckConstraint) As IEnumerable(Of IAnnotation)

參數

checkConstraint
ICheckConstraint

檢查條件約束。

傳回

註解。

適用於

For(IEntityType)

取得指定 IEntityType 之 的提供者特定移轉批註。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> For (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
abstract member For : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function For (entityType As IEntityType) As IEnumerable(Of IAnnotation)

參數

entityType
IEntityType

實體類型。

傳回

註解。

適用於

For(IForeignKey)

取得指定 IForeignKey 之 的提供者特定移轉批註。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> For (Microsoft.EntityFrameworkCore.Metadata.IForeignKey foreignKey);
abstract member For : Microsoft.EntityFrameworkCore.Metadata.IForeignKey -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function For (foreignKey As IForeignKey) As IEnumerable(Of IAnnotation)

參數

foreignKey
IForeignKey

外部索引鍵。

傳回

註解。

適用於

For(IIndex)

取得指定 IIndex 之 的提供者特定移轉批註。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> For (Microsoft.EntityFrameworkCore.Metadata.IIndex index);
abstract member For : Microsoft.EntityFrameworkCore.Metadata.IIndex -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function For (index As IIndex) As IEnumerable(Of IAnnotation)

參數

index
IIndex

索引。

傳回

註解。

適用於

For(IKey)

取得指定 IKey 之 的提供者特定移轉批註。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> For (Microsoft.EntityFrameworkCore.Metadata.IKey key);
abstract member For : Microsoft.EntityFrameworkCore.Metadata.IKey -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function For (key As IKey) As IEnumerable(Of IAnnotation)

參數

key
IKey

索引鍵。

傳回

註解。

適用於

For(IModel)

取得指定 IModel 之 的提供者特定移轉批註。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> For (Microsoft.EntityFrameworkCore.Metadata.IModel model);
abstract member For : Microsoft.EntityFrameworkCore.Metadata.IModel -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function For (model As IModel) As IEnumerable(Of IAnnotation)

參數

model
IModel

模型本身。

傳回

註解。

適用於

For(IProperty)

取得指定 IProperty 之 的提供者特定移轉批註。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> For (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
abstract member For : Microsoft.EntityFrameworkCore.Metadata.IProperty -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function For (property As IProperty) As IEnumerable(Of IAnnotation)

參數

property
IProperty

屬性。

傳回

註解。

適用於

For(ISequence)

取得指定 ISequence 之 的提供者特定移轉批註。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> For (Microsoft.EntityFrameworkCore.Metadata.ISequence sequence);
abstract member For : Microsoft.EntityFrameworkCore.Metadata.ISequence -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function For (sequence As ISequence) As IEnumerable(Of IAnnotation)

參數

sequence
ISequence

順序。

傳回

註解。

適用於