Interface ISetEntity
The system entity for a set entity, which indicates which IObjectEntity belongs to which IEntitySet
See https://web.lemonedge.com/help/company-structure-set-entities-view/ 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.SetEntity, "dbo.LT_SetEntities", "SetEntity", IsStandingDataEntity = true)]
[DefaultEntityIcon(ImageType.CompanyOrg)]
public interface ISetEntity : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
EntityID
[Key] Links to IObjectEntity. The entity that belongs within this entity set
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.ObjectEntity, "ID", SingleJoinType.One, "SetEntity", "ObjectEntity", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false)]
Guid EntityID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
EntitySetID
[Key] Links to IEntitySet. The entity set this object entity belongs to
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.EntitySet, "ID", SingleJoinType.One, "SetEntity", "EntitySet", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true)]
Guid EntitySetID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |