MigrationsAnnotationProvider.For 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
For(ISequence) |
取得指定 ISequence 之 的提供者特定移轉批註。 預設實作會傳回空集合。 |
For(IModel) |
取得指定 IModel 之 的提供者特定移轉批註。 預設實作會傳回空集合。 |
For(IKey) |
取得指定 IKey 之 的提供者特定移轉批註。 預設實作會傳回空集合。 |
For(IProperty) |
取得指定 IProperty 之 的提供者特定移轉批註。 預設實作會傳回空集合。 |
For(IForeignKey) |
取得指定 IForeignKey 之 的提供者特定移轉批註。 預設實作會傳回空集合。 |
For(IEntityType) |
取得指定 IEntityType 之 的提供者特定移轉批註。 預設實作會傳回空集合。 |
For(ICheckConstraint) |
取得指定 ICheckConstraint 之 的提供者特定移轉批註。 預設實作會傳回空集合。 |
For(IIndex) |
取得指定 IIndex 之 的提供者特定移轉批註。 預設實作會傳回空集合。 |
For(ISequence)
取得指定 ISequence 之 的提供者特定移轉批註。
預設實作會傳回空集合。
public virtual 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>
override this.For : Microsoft.EntityFrameworkCore.Metadata.ISequence -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Overridable Function For (sequence As ISequence) As IEnumerable(Of IAnnotation)
參數
- sequence
- ISequence
順序。
傳回
註解。
實作
適用於
For(IModel)
取得指定 IModel 之 的提供者特定移轉批註。
預設實作會傳回空集合。
public virtual 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>
override this.For : Microsoft.EntityFrameworkCore.Metadata.IModel -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Overridable Function For (model As IModel) As IEnumerable(Of IAnnotation)
參數
- model
- IModel
模型本身。
傳回
註解。
實作
適用於
For(IKey)
取得指定 IKey 之 的提供者特定移轉批註。
預設實作會傳回空集合。
public virtual 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>
override this.For : Microsoft.EntityFrameworkCore.Metadata.IKey -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Overridable Function For (key As IKey) As IEnumerable(Of IAnnotation)
參數
- key
- IKey
索引鍵。
傳回
註解。
實作
適用於
For(IProperty)
取得指定 IProperty 之 的提供者特定移轉批註。
預設實作會傳回空集合。
public virtual 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>
override this.For : Microsoft.EntityFrameworkCore.Metadata.IProperty -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Overridable Function For (property As IProperty) As IEnumerable(Of IAnnotation)
參數
- property
- IProperty
屬性。
傳回
註解。
實作
適用於
For(IForeignKey)
取得指定 IForeignKey 之 的提供者特定移轉批註。
預設實作會傳回空集合。
public virtual 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>
override this.For : Microsoft.EntityFrameworkCore.Metadata.IForeignKey -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Overridable Function For (foreignKey As IForeignKey) As IEnumerable(Of IAnnotation)
參數
- foreignKey
- IForeignKey
外部索引鍵。
傳回
註解。
實作
適用於
For(IEntityType)
取得指定 IEntityType 之 的提供者特定移轉批註。
預設實作會傳回空集合。
public virtual 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>
override this.For : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Overridable Function For (entityType As IEntityType) As IEnumerable(Of IAnnotation)
參數
- entityType
- IEntityType
實體類型。
傳回
註解。
實作
適用於
For(ICheckConstraint)
取得指定 ICheckConstraint 之 的提供者特定移轉批註。
預設實作會傳回空集合。
public virtual 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>
override this.For : Microsoft.EntityFrameworkCore.Metadata.ICheckConstraint -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Overridable Function For (checkConstraint As ICheckConstraint) As IEnumerable(Of IAnnotation)
參數
- checkConstraint
- ICheckConstraint
檢查條件約束。
傳回
註解。
實作
適用於
For(IIndex)
取得指定 IIndex 之 的提供者特定移轉批註。
預設實作會傳回空集合。
public virtual 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>
override this.For : Microsoft.EntityFrameworkCore.Metadata.IIndex -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Overridable Function For (index As IIndex) As IEnumerable(Of IAnnotation)
參數
- index
- IIndex
索引。
傳回
註解。