IMigrationsAnnotationProvider.ForRemove メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ForRemove(IViewColumn) |
削除されるときに指定された の IViewColumn プロバイダー固有の注釈を取得します。 |
ForRemove(IView) |
削除されるときに指定された の IView プロバイダー固有の注釈を取得します。 |
ForRemove(IUniqueConstraint) |
削除されるときに指定された の IUniqueConstraint プロバイダー固有の移行注釈を取得します。 |
ForRemove(ITableIndex) |
削除されるときに指定された の ITableIndex プロバイダー固有の移行注釈を取得します。 |
ForRemove(ITable) |
削除されるときに指定された の ITable プロバイダー固有の移行注釈を取得します。 |
ForRemove(ISequence) |
削除されるときに指定された の ISequence プロバイダー固有の移行注釈を取得します。 |
ForRemove(IRelationalModel) |
変更時に指定 IRelationalModel された のプロバイダー固有の移行注釈を取得します。 |
ForRemove(IProperty) |
削除または変更されるときに指定された の IProperty プロバイダー固有の移行注釈を取得します。 |
ForRemove(IIndex) |
削除または変更されるときに指定された の IIndex プロバイダー固有の移行注釈を取得します。 |
ForRemove(IKey) |
削除または変更されるときに指定された の IKey プロバイダー固有の移行注釈を取得します。 |
ForRemove(IForeignKeyConstraint) |
削除されるときに指定された の IForeignKeyConstraint プロバイダー固有の移行注釈を取得します。 |
ForRemove(IForeignKey) |
削除または変更されるときに指定された の IForeignKey プロバイダー固有の移行注釈を取得します。 |
ForRemove(IEntityType) |
削除または変更されるときに指定された の IEntityType プロバイダー固有の移行注釈を取得します。 |
ForRemove(IColumn) |
削除されるときに指定された の IColumn プロバイダー固有の移行注釈を取得します。 |
ForRemove(ICheckConstraint) |
削除されるときに指定された の ICheckConstraint プロバイダー固有の移行注釈を取得します。 |
ForRemove(IModel) |
削除または変更されるときに指定された の IModel プロバイダー固有の移行注釈を取得します。 |
ForRemove(IViewColumn)
削除されるときに指定された の IViewColumn プロバイダー固有の注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IViewColumn column);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IViewColumn -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (column As IViewColumn) As IEnumerable(Of IAnnotation)
パラメーター
- column
- IViewColumn
列です。
戻り値
注釈。
適用対象
ForRemove(IView)
削除されるときに指定された の IView プロバイダー固有の注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IView view);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IView -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (view As IView) As IEnumerable(Of IAnnotation)
パラメーター
- view
- IView
ビュー。
戻り値
注釈。
適用対象
ForRemove(IUniqueConstraint)
削除されるときに指定された の IUniqueConstraint プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IUniqueConstraint constraint);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IUniqueConstraint -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (constraint As IUniqueConstraint) As IEnumerable(Of IAnnotation)
パラメーター
- constraint
- IUniqueConstraint
一意制約。
戻り値
注釈。
適用対象
ForRemove(ITableIndex)
削除されるときに指定された の ITableIndex プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.ITableIndex index);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.ITableIndex -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (index As ITableIndex) As IEnumerable(Of IAnnotation)
パラメーター
- index
- ITableIndex
インデックス。
戻り値
注釈。
適用対象
ForRemove(ITable)
削除されるときに指定された の ITable プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.ITable table);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.ITable -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (table As ITable) As IEnumerable(Of IAnnotation)
パラメーター
- table
- ITable
テーブル。
戻り値
注釈。
適用対象
ForRemove(ISequence)
削除されるときに指定された の ISequence プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.ISequence sequence);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.ISequence -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (sequence As ISequence) As IEnumerable(Of IAnnotation)
パラメーター
- sequence
- ISequence
シーケンス。
戻り値
注釈。
適用対象
ForRemove(IRelationalModel)
変更時に指定 IRelationalModel された のプロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IRelationalModel model);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IRelationalModel -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (model As IRelationalModel) As IEnumerable(Of IAnnotation)
パラメーター
- model
- IRelationalModel
データベース モデル。
戻り値
注釈。
適用対象
ForRemove(IProperty)
削除または変更されるときに指定された の IProperty プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IProperty property);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IProperty -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (property As IProperty) As IEnumerable(Of IAnnotation)
パラメーター
- property
- IProperty
プロパティ。
戻り値
注釈。
適用対象
ForRemove(IIndex)
削除または変更されるときに指定された の IIndex プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IIndex index);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IIndex -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (index As IIndex) As IEnumerable(Of IAnnotation)
パラメーター
- index
- IIndex
インデックス。
戻り値
注釈。
適用対象
ForRemove(IKey)
削除または変更されるときに指定された の IKey プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IKey key);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IKey -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (key As IKey) As IEnumerable(Of IAnnotation)
パラメーター
- key
- IKey
キー。
戻り値
注釈。
適用対象
ForRemove(IForeignKeyConstraint)
削除されるときに指定された の IForeignKeyConstraint プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IForeignKeyConstraint foreignKey);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IForeignKeyConstraint -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (foreignKey As IForeignKeyConstraint) As IEnumerable(Of IAnnotation)
パラメーター
- foreignKey
- IForeignKeyConstraint
外部キー。
戻り値
注釈。
適用対象
ForRemove(IForeignKey)
削除または変更されるときに指定された の IForeignKey プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IForeignKey foreignKey);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IForeignKey -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (foreignKey As IForeignKey) As IEnumerable(Of IAnnotation)
パラメーター
- foreignKey
- IForeignKey
外部キー。
戻り値
注釈。
適用対象
ForRemove(IEntityType)
削除または変更されるときに指定された の IEntityType プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (entityType As IEntityType) As IEnumerable(Of IAnnotation)
パラメーター
- entityType
- IEntityType
エンティティの型。
戻り値
注釈。
適用対象
ForRemove(IColumn)
削除されるときに指定された の IColumn プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IColumn column);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IColumn -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (column As IColumn) As IEnumerable(Of IAnnotation)
パラメーター
- column
- IColumn
列です。
戻り値
注釈。
適用対象
ForRemove(ICheckConstraint)
削除されるときに指定された の ICheckConstraint プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.ICheckConstraint checkConstraint);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.ICheckConstraint -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (checkConstraint As ICheckConstraint) As IEnumerable(Of IAnnotation)
パラメーター
- checkConstraint
- ICheckConstraint
チェック制約。
戻り値
注釈。
適用対象
ForRemove(IModel)
削除または変更されるときに指定された の IModel プロバイダー固有の移行注釈を取得します。
public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation> ForRemove (Microsoft.EntityFrameworkCore.Metadata.IModel model);
abstract member ForRemove : Microsoft.EntityFrameworkCore.Metadata.IModel -> seq<Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation>
Public Function ForRemove (model As IModel) As IEnumerable(Of IAnnotation)
パラメーター
- model
- IModel
モデル。
戻り値
注釈。
適用対象
Entity Framework