Interface IAllocationPath
The system entity for an allocation path, which holds a collection of path rules
See https://web.lemonedge.com/help/allocation-paths/ 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.AllocationPath, "dbo.LT_AllocationPaths", "AllocationPath", LabelColumn = "Name", IsStandingDataEntity = false, HelpURL = "allocation-paths")]
[DefaultEntityIcon(ImageType.Path)]
public interface IAllocationPath : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier
Properties
Description
A user friendly description of this allocation path and its uses
Declaration
[EntityProperty(SQLType.NVarChar, (short)2000, true)]
[EntityDescription("A user friendly description of this allocation path.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
EntitySetID
Links to IEntitySet. The Entity Set this Allocation Path is contained within. i.e.The Allocation Path is creating a path through the entities within this entity set.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.EntitySet, "ID", SingleJoinType.One, "AllocationPath", "EntitySet", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = false)]
[EntityDescription("The entity set that this allocation path belongs to.")]
Guid EntitySetID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
Name
[Key] The unique user friendly name of this Allocation Path
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, false)]
[EntityDescription("The unique name of this allocation path.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |