IReadOnlyTrigger 接口

定义

表示存储触发器。

public interface IReadOnlyTrigger : Microsoft.EntityFrameworkCore.Infrastructure.IReadOnlyAnnotatable
type IReadOnlyTrigger = interface
    interface IReadOnlyAnnotatable
Public Interface IReadOnlyTrigger
Implements IReadOnlyAnnotatable
派生
实现

注解

由于触发器功能因数据库而异,这主要是提供程序添加其自己的注释的扩展点。

有关详细信息和示例 ,请参阅数据库触发器

属性

EntityType

获取定义此触发器时所基于的实体类型。

Item[String]

获取具有给定名称的批注的值,如果不存在,则返回 null

(继承自 IReadOnlyAnnotatable)
ModelName

获取模型中触发器的名称。

方法

AnnotationsToDebugString(Int32)

获取对象上声明的所有注释的调试字符串。

(继承自 IReadOnlyAnnotatable)
FindAnnotation(String)

获取具有给定名称的批注,如果不存在,则返回 null

(继承自 IReadOnlyAnnotatable)
GetAnnotation(String)

获取具有给定名称的批注,如果不存在,则引发该批注。

(继承自 IReadOnlyAnnotatable)
GetAnnotations()

获取当前 对象上的所有注释。

(继承自 IReadOnlyAnnotatable)
ToDebugString(MetadataDebugStringOptions, Int32)

创建给定元数据的可读表示形式。

警告:不要依赖于返回的字符串的格式。 它仅用于调试,并且可能会在版本之间任意更改。

扩展方法

GetDatabaseName(IReadOnlyTrigger)

获取数据库中触发器的名称。

GetDatabaseName(IReadOnlyTrigger, StoreObjectIdentifier)

获取触发器的数据库名称。

GetDefaultDatabaseName(IReadOnlyTrigger)

返回将用于数据库中此触发器的默认名称。

GetDefaultDatabaseName(IReadOnlyTrigger, StoreObjectIdentifier)

返回将用于此触发器的默认数据库名称。

GetTableName(IReadOnlyTrigger)

获取定义此触发器的表的名称。

GetTableSchema(IReadOnlyTrigger)

获取定义此触发器的表的架构。

适用于