Class ExtendedEventsSchema.ServerEventSessionEvent
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.server_event_session_events (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
Returns a row for each event in an event session.
[Table(Schema = "sys", Name = "server_event_session_events", IsView = true)]
public class ExtendedEventsSchema.ServerEventSessionEvent
- Inheritance
-
ExtendedEventsSchema.ServerEventSessionEvent
- 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
EventSessionID
The ID of the event session. Is not nullable.
[Column("event_session_id")]
[NotNull]
public int EventSessionID { get; set; }
Property Value
Module
The name of the module that contains the event. Is not nullable.
[Column("module")]
[Nullable]
public string? Module { get; set; }
Property Value
Name
The name of the event. Is not nullable.
[Column("name")]
[Nullable]
public string? Name { get; set; }
Property Value
Package
The name of the event package that contains the event. Is not nullable.
[Column("package")]
[Nullable]
public string? Package { get; set; }
Property Value
Predicate
The predicate expression that is applied to the event. Is nullable.
[Column("predicate")]
[Nullable]
public string? Predicate { get; set; }
Property Value
PredicateXml
The XML predicate expression that is applied to the event. Is nullable.
[Column("predicate_xml")]
[Nullable]
public string? PredicateXml { get; set; }