IConventionTrigger インターフェイス

定義

ストア トリガーを表します。

public interface IConventionTrigger : Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotatable, Microsoft.EntityFrameworkCore.Metadata.IReadOnlyTrigger
type IConventionTrigger = interface
    interface IReadOnlyTrigger
    interface IReadOnlyAnnotatable
    interface IConventionAnnotatable
Public Interface IConventionTrigger
Implements IConventionAnnotatable, IReadOnlyTrigger
実装

注釈

詳細と例については、「 データベース トリガー 」を参照してください。

プロパティ

Builder

このトリガーの構成に使用できるビルダーを取得します。

EntityType

このトリガーが IConventionEntityType 定義されている を取得します。

IsInModel

このオブジェクトがモデル内にあるかどうか、つまり、モデルから削除されていないかどうかを示します。

(継承元 IConventionAnnotatable)
Item[String]

指定した名前の注釈の値を取得し、存在しない場合は を null 返します。

(継承元 IReadOnlyAnnotatable)
ModelName

モデル内のトリガーの名前を取得します。

(継承元 IReadOnlyTrigger)

メソッド

AddAnnotation(String, Object, Boolean)

このオブジェクトに注釈を追加します。 指定した名前の注釈が既に存在する場合は をスローします。

(継承元 IConventionAnnotatable)
AddAnnotations(IEnumerable<IConventionAnnotation>, Boolean)

オブジェクトに注釈を追加します。

(継承元 IConventionAnnotatable)
AnnotationsToDebugString(Int32)

オブジェクトで宣言されているすべての注釈のデバッグ文字列を取得します。

(継承元 IReadOnlyAnnotatable)
FindAnnotation(String)

指定された名前の注釈を取得し、存在しない場合は を null 返します。

(継承元 IConventionAnnotatable)
GetAnnotation(String)

指定された名前の注釈を取得し、存在しない場合は をスローします。

(継承元 IConventionAnnotatable)
GetAnnotations()

現在のオブジェクトのすべての注釈を取得します。

(継承元 IConventionAnnotatable)
GetConfigurationSource()

このトリガーの構成ソースを取得します。

RemoveAnnotation(String)

指定した名前の注釈をこのオブジェクトから削除します。

(継承元 IConventionAnnotatable)
SetAnnotation(String, Object, Boolean)

指定した名前の下に格納されている注釈を設定します。 指定した名前の注釈が既に存在する場合は、既存の注釈を上書きします。

(継承元 IConventionAnnotatable)
SetOrRemoveAnnotation(String, Object, Boolean)

指定した名前の下に格納されている注釈を設定します。 指定した名前の注釈が既に存在する場合は、既存の注釈を上書きします。 が指定されている場合 null は、既存の注釈を削除します。

(継承元 IConventionAnnotatable)
ToDebugString(MetadataDebugStringOptions, Int32)

指定されたメタデータの人間が判読できる表現を作成します。

警告: 返される文字列の形式に依存しないでください。 デバッグ専用に設計されており、リリース間で任意に変更される可能性があります。

(継承元 IReadOnlyTrigger)

拡張メソッド

GetDatabaseName(IReadOnlyTrigger)

データベース内のトリガーの名前を取得します。

GetDatabaseName(IReadOnlyTrigger, StoreObjectIdentifier)

トリガーのデータベース名を取得します。

GetDatabaseNameConfigurationSource(IConventionTrigger)

データベース名の構成ソースを取得します。

GetDefaultDatabaseName(IReadOnlyTrigger)

データベース内のこのトリガーに使用される既定の名前を返します。

GetDefaultDatabaseName(IReadOnlyTrigger, StoreObjectIdentifier)

このトリガーに使用される既定のデータベース名を返します。

GetTableName(IReadOnlyTrigger)

このトリガーが定義されているテーブルの名前を取得します。

GetTableNameConfigurationSource(IConventionTrigger)

テーブル名の構成ソースを取得します。

GetTableSchema(IReadOnlyTrigger)

このトリガーが定義されているテーブルのスキーマを取得します。

GetTableSchemaConfigurationSource(IConventionTrigger)

テーブル スキーマの構成ソースを取得します。

SetDatabaseName(IConventionTrigger, String, Boolean)

データベース内のトリガーの名前を設定します。

SetTableName(IConventionTrigger, String, Boolean)

このトリガーが定義されているテーブルの名前を設定します。

SetTableSchema(IConventionTrigger, String, Boolean)

このトリガーが定義されているテーブルのスキーマを設定します。

適用対象