Search Results for

    Show / Hide Table of Contents

    Interface ISQLWrapperStat

    Inherited Members
    IBaseEntity.GetLabel(string)
    IBaseEntity.SetLabel(string, string)
    IBaseEntity.SetSilentLabel(string, string)
    IBaseEntity.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.AlgorithmStepID
    IBaseEntity.SafeID
    IEquatable<IBaseEntity>.Equals(IBaseEntity)
    INotifyPropertyChanged.PropertyChanged
    INotifyPropertyChanging.PropertyChanging
    ICloneableAsync.Clone(object)
    ICloneableAsync.CopyFromSource(object)
    ICanTrackProperties.HasTrackedPropertyChanged(string)
    ICanTrackProperties.OriginalTrackedPropertyValue(string)
    ICanTrackProperties.OriginalTrackedPropertyValue<T>(string)
    ICanTrackProperties.ClearTrackedOriginalValues()
    ICanTrackProperties.GetAllOriginalTrackedPropertyValues()
    Namespace: LemonEdge.API.Entities.Reporting
    Assembly: LemonEdge.API.dll
    Syntax
    [EntityDefinition(EntityID.SQLWrapperStat, "dbo.LT_SQLWrapperStat", "SQLWrapperStat")]
    [DefaultEntityIcon(ImageType.Statistics)]
    [EntityIndex(Name = "SQLWrapper", ColumnNames = new string[] { "SQLWrapperID", "ExecutionStart", "ExecutionEnd" }, IndexOrder = new IndexOrder[] { IndexOrder.Ascending, IndexOrder.Ascending, IndexOrder.Ascending }, IsClustered = false)]
    public interface ISQLWrapperStat : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    ExecutedAsCount

    Indicates this execution was as a count only, and didn't return results

    Declaration
    [EntityProperty(SQLType.Bit, false)]
    [EntityDescription("Indicates this execution was as a count only, and didn't return results")]
    bool ExecutedAsCount { get; set; }
    Property Value
    Type Description
    bool

    ExecutionEnd

    The end date/time the query was run from

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, false)]
    [EntityDescription("The end date/time the query was run from")]
    DateTimeOffset ExecutionEnd { get; set; }
    Property Value
    Type Description
    DateTimeOffset

    ExecutionError

    Any error caught from this execution

    Declaration
    [EntityProperty(SQLType.NVarChar, true)]
    [EntityDescription("Any error caught from this execution")]
    string ExecutionError { get; set; }
    Property Value
    Type Description
    string

    ExecutionSQL

    The sql used to execute the sql wrapper

    Declaration
    [EntityProperty(SQLType.NVarChar, false)]
    [EntityDescription("The sql used to execute the sql wrapper")]
    string ExecutionSQL { get; set; }
    Property Value
    Type Description
    string

    ExecutionStart

    The start date/time the query was run from

    Declaration
    [EntityProperty(SQLType.DateTimeOffset, false)]
    [EntityDescription("The start date/time the query was run from")]
    DateTimeOffset ExecutionStart { get; set; }
    Property Value
    Type Description
    DateTimeOffset

    ExecutionTimeInSeconds

    The total execution time in seconds

    Declaration
    [EntityProperty(SQLType.Int, false)]
    [EntityDescription("The total execution time in seconds")]
    int ExecutionTimeInSeconds { get; set; }
    Property Value
    Type Description
    int

    Failed

    Indicates this execution failed

    Declaration
    [EntityProperty(SQLType.Bit, false)]
    [EntityDescription("Indicates this execution failed")]
    bool Failed { get; set; }
    Property Value
    Type Description
    bool

    ResultRowCount

    Returns the total number of rows in the result set

    Declaration
    [EntityProperty(SQLType.Int, false)]
    [EntityDescription("Returns the total number of rows in the result set")]
    int ResultRowCount { get; set; }
    Property Value
    Type Description
    int

    SQLWrapperID

    [Key] Links to ISQLWrapper. The parent sql wrapper this belongs to.

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, false)]
    [EntityKeyProperty]
    [EntityRelationship(EntityID.SQLWrapper, "ID", SingleJoinType.One, "SQL Wrapper", "Statistics", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = true)]
    Guid SQLWrapperID { get; set; }
    Property Value
    Type Description
    Guid

    Extension Methods

    LinqExtensions.AsArray<T>(T)
    LinqExtensions.ToArrayOfOne<T>(T)
    LinqExtensions.ToListOfOne<T>(T)
    MiscExtensions.SetIfNotEqual<T, TP>(T, Expression<Func<T, TP>>, TP)
    WeakReferenceExtensions.WeakReference(object)
    SQLExtensions.ToSQLValue(object, bool)
    ReflectionExtensions.ClearEventInvocations(object, string)
    StringExtensions.ToCSVFormatString(object, Type)
    In this article
    Back to top © LemonEdge Technologies. All rights reserved.