Search Results for

    Show / Hide Table of Contents

    Interface ICanvasItem

    A complex type definition for holding the results of running a query that returns the changes in a canves

    Can be executed from Execute(Guid, QueryableExecuter<ICanvasItem>)

    Namespace: LemonEdge.API.Entities.Data
    Assembly: LemonEdge.API.dll
    Syntax
    [ComplexDefinition(ImageType.Canvas, "Canvas Item")]
    public interface ICanvasItem

    Properties

    AccountID

    The account id this item belongs to

    Declaration
    [Key]
    [Column(Order = 0)]
    long AccountID { get; set; }
    Property Value
    Type Description
    long

    ApprovedByUserID

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, true, FriendlyLabel = "Approved By User")]
    Guid? ApprovedByUserID { get; set; }
    Property Value
    Type Description
    Guid?

    ApprovedByUserID_Label

    Declaration
    [EntityProperty(SQLType.NVarChar, true)]
    string ApprovedByUserID_Label { get; set; }
    Property Value
    Type Description
    string

    Comment

    Declaration
    [EntityProperty(SQLType.NVarChar, true, FriendlyLabel = "Comment")]
    string Comment { get; set; }
    Property Value
    Type Description
    string

    ID

    The unique global id of this item

    Declaration
    [Key]
    [Column(Order = 1)]
    Guid ID { get; set; }
    Property Value
    Type Description
    Guid

    Label

    The label of this item

    Declaration
    string Label { get; set; }
    Property Value
    Type Description
    string

    LastUpdated

    The date/time stamp this item was last changed on in the canvas

    Declaration
    [Key]
    [Column(Order = 2)]
    DateTimeOffset LastUpdated { get; set; }
    Property Value
    Type Description
    DateTimeOffset

    ModifiedByUserID

    The user who made the change in the canvas

    Declaration
    Guid ModifiedByUserID { get; set; }
    Property Value
    Type Description
    Guid

    ModifiedByUserID_Label

    The name of the user who made the change in the canvas

    Declaration
    [EntityProperty(SQLType.NVarChar, false, FriendlyLabel = "Modified By")]
    string ModifiedByUserID_Label { get; set; }
    Property Value
    Type Description
    string

    ObjectType

    The unique global id of the type of entity

    Declaration
    Guid ObjectType { get; set; }
    Property Value
    Type Description
    Guid

    ObjectType_Label

    The label of the entity type that this changed item belongs to

    Declaration
    [EntityProperty(SQLType.NVarChar, false, FriendlyLabel = "Type")]
    string ObjectType_Label { get; set; }
    Property Value
    Type Description
    string

    RejectedByUserID

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, true, FriendlyLabel = "Rejected By User")]
    Guid? RejectedByUserID { get; set; }
    Property Value
    Type Description
    Guid?

    RejectedByUserID_Label

    Declaration
    [EntityProperty(SQLType.NVarChar, true)]
    string RejectedByUserID_Label { get; set; }
    Property Value
    Type Description
    string

    Status

    The type of change that has occured to this item within the canvas

    Declaration
    CanvasItemStatus Status { get; set; }
    Property Value
    Type Description
    CanvasItemStatus

    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.