Table of Contents

Class ObjectSchema.EventNotificationEventType

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.event_notification_event_types (Transact-SQL)

Applies to: √ SQL Server (all supported versions) √ Azure SQL Database

Returns a row for each event or event group on which an event notification can fire.


See sys.event_notification_event_types.

[Table(Schema = "sys", Name = "event_notification_event_types", IsView = true)]
public class ObjectSchema.EventNotificationEventType
Inheritance
ObjectSchema.EventNotificationEventType
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 an event notification to fire.

[Column("type")]
[NotNull]
public int TypeColumn { get; set; }

Property Value

int

TypeName

Name of an event or event group. This can be specified in the FOR clause of a CREATE EVENT NOTIFICATION statement.

[Column("type_name")]
[Nullable]
public string? TypeName { get; set; }

Property Value

string