Search Results for

    Show / Hide Table of Contents

    Interface IReconciliationSource

    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.DataIntegration
    Assembly: LemonEdge.API.dll
    Syntax
    [EntityDefinition(EntityID.ReconciliationSource, "dbo.LT_ReconciliationSources", "ReconciliationSource", IsStandingDataEntity = true)]
    [DefaultEntityIcon(ImageType.SQLFile)]
    public interface IReconciliationSource : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    Description

    A user friendly description of this reconciliation

    Declaration
    [EntityProperty(SQLType.NVarChar, 2000, true)]
    [EntityDescription("A user friendly description of the use of this reconciliation source.")]
    string Description { get; set; }
    Property Value
    Type Description
    string

    EmbeddedFile

    A hardcoded csv file to compare the result too

    Declaration
    [EntityProperty(SQLType.NVarChar, true)]
    [EntityDescription("Embedded Static CSV File.")]
    string EmbeddedFile { get; set; }
    Property Value
    Type Description
    string

    IsPrimary

    Indicatse this is the primary source to compare others to

    Declaration
    [EntityProperty(SQLType.Bit, false)]
    [EntityDescription("Indicates this is the primary source to compare others to")]
    bool IsPrimary { get; set; }
    Property Value
    Type Description
    bool

    Name

    The unique user friendly name for this Reconciliation Source

    Declaration
    [EntityProperty(SQLType.NVarChar, 500, false)]
    [EntityKeyProperty]
    [EntityDescription("The unique name of this reconciliation source.")]
    [Required]
    string Name { get; set; }
    Property Value
    Type Description
    string

    ReconciliationID

    [Key] Links to IReconciliation. The parent reconcilliation this source beloings to

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, false)]
    [EntityRelationship(EntityID.Reconciliation, "ID", SingleJoinType.One, "Reconciliation", "Sources", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true)]
    [RequiredNoDefaultIDValidation]
    [EntityKeyProperty]
    Guid ReconciliationID { get; set; }
    Property Value
    Type Description
    Guid

    SQLWrapperID

    [Key] Links to ISQLWrapper. The sql wrapper for this source

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, true)]
    [EntityRelationship(EntityID.SQLWrapper, "ID", SingleJoinType.ZeroToOne, "Reconciliation Source", "Sources", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = true, InheritPermissions = false)]
    [RequiredNoDefaultIDValidation]
    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.