Interface ITransactionMatcherOn
The system entity for a transaction matcher on, which defines a single method of filtering in the parent ITransactionMatcher
See https://web.lemonedge.com/help/transaction-matcher-on/ for more information
Inherited Members
System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
System.ComponentModel.INotifyPropertyChanging.PropertyChanging
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 |