Search Results for

    Show / Hide Table of Contents

    Interface ITransactionMatcherOn

    The system entity for a transaction matcher on, which defines a single method of filtering in the parent ITransactionMatcher

    See https://help.lemonedge.com/help/settings/financial-services-processes/transaction-matchers/matchers-on-view.html for more information

    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.FinancialServices.Transactions
    Assembly: LemonEdge.API.Entities.FinancialServices.dll
    Syntax
    [EntityDefinition(EntityID.TransactionMatcherOn, "dbo.LT_TransactionMatcherOn", "TransactionMatcherOn", IsStandingDataEntity = true)]
    [DefaultEntityIcon(ImageType.TransactionFilter)]
    public interface ITransactionMatcherOn : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties

    Properties

    LedgerID

    [Key] Links to ILedger. Matches on any Transaction that is recorded against this Ledger.

    If blank, it is ignored.

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, true)]
    [EntityRelationship(EntityID.Ledger, "ID", SingleJoinType.ZeroToOne, "Matching Ledger", "Transaction Matches", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
    [EntityDescription("The ledger to use to match all transactions on the instrument set with.")]
    [EntityKeyProperty]
    Guid? LedgerID { get; set; }
    Property Value
    Type Description
    Guid?

    TransactionCodeID

    [Key] Links to ITransactionCode. Matches on any Transaction that has this Transaction Code.

    If blank, it is ignored.

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, true)]
    [EntityRelationship(EntityID.TransactionCode, "ID", SingleJoinType.ZeroToOne, "Matching Transaction Code", "Transaction Matches", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false)]
    [EntityDescription("The transaction code to use to match all transactions on.")]
    [EntityKeyProperty]
    Guid? TransactionCodeID { get; set; }
    Property Value
    Type Description
    Guid?

    TransactionMatcherID

    [Key] Links to ITransactionMatcher. The parent transaction matcher this is a member of

    Declaration
    [EntityProperty(SQLType.UniqueIdentifier, false)]
    [EntityRelationship(EntityID.TransactionMatcher, "ID", SingleJoinType.One, "Transaction Matcher", "Matching On", DeleteWithRelationship = false, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true)]
    [EntityKeyProperty]
    Guid TransactionMatcherID { 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)

    See Also

    ITransactionMatcher
    ITransaction
    ITransactionTypeValue
    In this article
    Back to top © LemonEdge Technologies. All rights reserved.