Table of Contents

Class ExtendedEventsSchema.ServerEventSessionTarget

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

sys.server_event_session_targets (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Returns a row for each event target for an event session.


See sys.server_event_session_targets.

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

Properties

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 target. Is not nullable.

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

Property Value

string

Name

The name of the event target. Is not nullable.

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

Property Value

string

Package

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

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

Property Value

string

TargetID

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

[Column("target_id")]
[NotNull]
public int TargetID { get; set; }

Property Value

int