Table of Contents

Class ExtendedEventsSchema.DatabaseEventSessionEvent

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

sys.database_event_session_events (Azure SQL Database)

Applies to: √ SQL Server 2016 (13.x) and later √ Azure SQL Database √ Azure SQL Managed Instance

Returns a row for each event in an event session.
||
|-|
|Applies to: Azure SQL Database V12 and any later versions.|


See sys.database_event_session_events.

[Table(Schema = "sys", Name = "database_event_session_events", IsView = true)]
public class ExtendedEventsSchema.DatabaseEventSessionEvent
Inheritance
ExtendedEventsSchema.DatabaseEventSessionEvent
Extension Methods

Properties

EventID

The ID of the event. This ID is unique within an event session object. Is not nullable.

[Column("event_id")]
[NotNull]
public int EventID { get; set; }

Property Value

int

EventSessionID

The ID of the event session. Is not nullable.

[Column("event_session_id")]
[NotNull]
public int EventSessionID { get; set; }

Property Value

int

Module

The name of the module that contains the event. Is not nullable.

[Column("module")]
[NotNull]
public string Module { get; set; }

Property Value

string

Name

The name of the event. Is not nullable.

[Column("name")]
[NotNull]
public string Name { get; set; }

Property Value

string

Package

The name of the event package that contains the event. Is not nullable.

[Column("package")]
[NotNull]
public string Package { get; set; }

Property Value

string

Predicate

The predicate expression that is applied to the event. Is nullable.

[Column("predicate")]
[NotNull]
public string Predicate { get; set; }

Property Value

string

PredicateXml

The XML predicate expression that is applied to the event. Is nullable.

[Column("predicate_xml")]
[NotNull]
public string PredicateXml { get; set; }

Property Value

string