Class ExtendedEventsSchema.DatabaseEventSessionField
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.database_event_session_fields (Azure SQL Database)
Applies to: √ SQL Server 2016 (13.x) and later √ Azure SQL Database √ Azure SQL Managed Instance
Returns a row for each customizable column that was explicitly set on events and targets.
||
|-|
|Applies to: Azure SQL Database V12 and any later versions.|
[Table(Schema = "sys", Name = "database_event_session_fields", IsView = true)]
public class ExtendedEventsSchema.DatabaseEventSessionField
- Inheritance
-
ExtendedEventsSchema.DatabaseEventSessionField
- 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")]
[NotNull]
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")]
[NotNull]
public object Value { get; set; }