Interface IAlgorithmRunData
The system entity for holding the spreadsheet for the algorithm run
Inherited Members
Namespace: LemonEdge.API.Entities.Design
Assembly: LemonEdge.API.dll
Syntax
[EntityDefinition(EntityID.AlgorithmRunStepData, "dbo.LT_AlgorithmRunData", "AlgorithmRunData")]
[DefaultEntityIcon(ImageType.AlgorithmRun)]
[EntityIndex(Name = "AlgorithmRunData", ColumnNames = new string[] { "AlgorithmRunID" }, IndexOrder = new IndexOrder[] { IndexOrder.Ascending }, IsClustered = false, IsUnique = false)]
public interface IAlgorithmRunData : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
AlgorithmRunID
Links to parent IAlgorithm.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.AlgorithmRun, "ID", SingleJoinType.One, "Algorithm Run", "Calculations", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = true, InheritPermissions = true)]
[RequiredNoDefaultIDValidation]
Guid AlgorithmRunID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
AlgorithmRunStepID
Links to parent IAlgorithm.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.AlgorithmRunStep, "ID", SingleJoinType.One, "Algorithm Run Step", "Calculations", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[RequiredNoDefaultIDValidation]
Guid AlgorithmRunStepID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Data
Holds the actuall raw spreadsheet of the algorithm..
Declaration
[EntityProperty(SQLType.VarBinary, false)]
[EntityDescription("Holds the actuall raw spreadsheet of the algorithm.")]
byte[] Data { get; set; }
Property Value
Type | Description |
---|---|
byte[] |