Class QueryMetadata
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Metadata about query execution.
public class QueryMetadata
- Inheritance
-
objectQueryMetadata
Properties
ExecutedAt
Gets or sets the timestamp when the query was executed.
public DateTime ExecutedAt { get; set; }
Property Value
- DateTime
ExecutionTimeMs
Gets or sets the time taken to execute the query in milliseconds.
public long ExecutionTimeMs { get; set; }
Property Value
- long
FiltersApplied
Gets or sets the number of filters applied.
public int FiltersApplied { get; set; }
Property Value
- int
PerformanceMetrics
Gets or sets additional performance metrics.
public Dictionary<string, object>? PerformanceMetrics { get; set; }
Property Value
- Dictionary<string, object>
WasCached
Gets or sets whether the results were cached.
public bool WasCached { get; set; }
Property Value
- bool