Interface IServerTaskModifiedItem
Assembly: LemonEdge.API.dll
Syntax
[EntityDefinition(EntityID.ServerTaskModifiedItemsItem, "dbo.LT_ServerTaskModifiedItems", "ServerTaskModifiedItem", IsStandingDataEntity = false, DontPromoteFromCanvas = false)]
[DefaultEntityIcon(ImageType.ServerProcess)]
[EntityIndex(Name = "Task", ColumnNames = new string[] { "ServerTaskID" }, IndexOrder = new IndexOrder[] { IndexOrder.Ascending }, IsClustered = false, IsUnique = false)]
[EntityIndex(Name = "ItemType", ColumnNames = new string[] { "ItemTypeID", "ItemID" }, IndexOrder = new IndexOrder[] { IndexOrder.Ascending, IndexOrder.Ascending }, IsClustered = false, IsUnique = false)]
public interface IServerTaskModifiedItem : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
ItemID
[Key] The globally unique id of the entity being linked to
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityDescription("The item itself.")]
[EntityKeyProperty]
[EntityLinkToAnyParentRelationship("ItemTypeID", SingleJoinType.One, "Server Task Modified Items", false, null, DeleteWithRelationship = false, PreventAutoConstraint = true)]
Guid ItemID { get; set; }
Property Value
ItemTypeID
[Key] The type of entity that was modified
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false, IsEntityTypeLink = true)]
[EntityDescription("The type of item.")]
Guid ItemTypeID { get; set; }
Property Value
ServerTaskID
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityKeyProperty]
[EntityRelationship(EntityID.ServerTask, "ID", SingleJoinType.One, "Server Task", "Modified Items", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = true)]
[RequiredNoDefaultIDValidation]
Guid ServerTaskID { get; set; }
Property Value
Status
Declaration
[EntityProperty(SQLType.SmallInt, false)]
ServerTaskItemModificationType Status { get; set; }
Property Value
Extension Methods