Table of Contents

Class ExtendedEventsSchema.ServerEventSessionField

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

sys.server_event_session_fields (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Returns a row for each customizable column that was explicitly set on events and targets.


See sys.server_event_session_fields.

[Table(Schema = "sys", Name = "server_event_session_fields", IsView = true)]
public class ExtendedEventsSchema.ServerEventSessionField
Inheritance
ExtendedEventsSchema.ServerEventSessionField
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

Name

The name of the field. Is not nullable.

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

Property Value

string

Object

objects (sys.objects)

[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }

Property Value

ObjectSchema.Object

ObjectID

The ID of the object this field is associated with. Is not nullable.

[Column("object_id")]
[NotNull]
public int ObjectID { get; set; }

Property Value

int

Value

The value of the field. Is not nullable.

[Column("value")]
[Nullable]
public object? Value { get; set; }

Property Value

object