Class ObjectSchema.TriggerEventType
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.trigger_event_types (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
Returns a row for each event or event group on which a trigger can fire.
[Table(Schema = "sys", Name = "trigger_event_types", IsView = true)]
public class ObjectSchema.TriggerEventType
- Inheritance
-
ObjectSchema.TriggerEventType
- Extension Methods
Properties
ParentType
Type of event group that is the parent of the event or event group.
[Column("parent_type")]
[Nullable]
public int? ParentType { get; set; }
Property Value
- int?
TypeColumn
Type of event or event group that causes a trigger to fire.
[Column("type")]
[NotNull]
public int TypeColumn { get; set; }
Property Value
TypeName
Name of an event or event group. This can be specified in the FOR clause of a CREATE TRIGGER statement.
[Column("type_name")]
[Nullable]
public string? TypeName { get; set; }