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.AccountID
    IBaseEntity.ID
    IBaseEntity.LastUpdated
    IBaseEntity.ModifiedByUserID
    IBaseEntity.CanvasID
    IBaseEntity.GetLabel(String)
    IBaseEntity.SetLabel(String, String)
    IBaseEntity.SetSilentLabel(String, String)
    System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
    System.ComponentModel.INotifyPropertyChanged.PropertyChanged
    System.ComponentModel.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
    Assembly: API.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.")]
    Guid? LedgerID { get; set; }
    Property Value
    Type Description
    System.Nullable<System.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.")]
    Guid? TransactionCodeID { get; set; }
    Property Value
    Type Description
    System.Nullable<System.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, "Parent Matcher", "Matching On", DeleteWithRelationship = false, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true)]
    Guid TransactionMatcherID { get; set; }
    Property Value
    Type Description
    System.Guid

    Extension Methods

    MiscExtensions.SetIfNotEqual<T, P>(T, Expression<Func<T, P>>, P)
    ReflectionExtensions.ClearEventInvocations(Object, String)
    StringExtensions.ToCSVFormatString(Object, Type)
    SQLExtensions.ToSQLValue(Object, Boolean)

    See Also

    ITransactionMatcher
    ITransaction
    ITransactionTypeValue
    In This Article
    Back to top © LemonEdge Technology. All rights reserved.