Class SQLWrapperStat
Inheritance
SQLWrapperStat
Assembly: LemonEdge.API.Entities.Auto.dll
Syntax
[DataContract]
public class SQLWrapperStat : BaseEntity, ISQLWrapperStat, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ICloneableAsync<ISQLWrapperStat>
Constructors
SQLWrapperStat()
Declaration
Properties
ExecutedAsCount
Indicates this execution was as a count only, and didn't return results
Declaration
public bool ExecutedAsCount { get; set; }
Property Value
ExecutionEnd
The end date/time the query was run from
Declaration
public DateTimeOffset ExecutionEnd { get; set; }
Property Value
ExecutionError
Any error caught from this execution
Declaration
public string ExecutionError { get; set; }
Property Value
ExecutionSQL
The sql used to execute the sql wrapper
Declaration
public string ExecutionSQL { get; set; }
Property Value
ExecutionStart
The start date/time the query was run from
Declaration
public DateTimeOffset ExecutionStart { get; set; }
Property Value
ExecutionTimeInSeconds
The total execution time in seconds
Declaration
public int ExecutionTimeInSeconds { get; set; }
Property Value
Failed
Indicates this execution failed
Declaration
public bool Failed { get; set; }
Property Value
ResultRowCount
Returns the total number of rows in the result set
Declaration
public int ResultRowCount { get; set; }
Property Value
SQLWrapperID
[Key] Links to ISQLWrapper. The parent sql wrapper this belongs to.
Declaration
public Guid SQLWrapperID { get; set; }
Property Value
SQLWrapperID_Label
Declaration
public string SQLWrapperID_Label { get; set; }
Property Value
SQLWrapperID_Label_Silent
Declaration
[NotMapped]
public string SQLWrapperID_Label_Silent { get; set; }
Property Value
Methods
CopyFromEntity(IBaseEntity)
Declaration
protected override void CopyFromEntity(IBaseEntity src)
Parameters
Overrides
CopyFromSource(ISQLWrapperStat)
Updates all properties in this item to have the same properties as the source object.
Declaration
public void CopyFromSource(ISQLWrapperStat source)
Parameters
Type |
Name |
Description |
ISQLWrapperStat |
source |
The source object to copy all values from.
|
Implements
Extension Methods