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.
[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
Name
The name of the field. Is not nullable.
[Column("name")]
[Nullable]
public string? Name { get; set; }
Property Value
Object
objects (sys.objects)
[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }
Property Value
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
Value
The value of the field. Is not nullable.
[Column("value")]
[Nullable]
public object? Value { get; set; }