Interface IDefaultObject
The system entity for a Default Object, which is used for dynamically ensuring items child items that are created by the system when a new item is created
Inherited Members
Namespace: LemonEdge.API.Entities.Design
Assembly: LemonEdge.API.dll
Syntax
[EntityDefinition(EntityID.DefaultObject, "dbo.LT_DefaultObjects", "DefaultObject", IsStandingDataEntity = true)]
[DefaultEntityIcon(ImageType.New)]
[DatabaseClassValidation(typeof(DefaultObjectValidation), "Validate")]
public interface IDefaultObject : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier
Properties
Description
Description for the new object being created automatically
Declaration
[EntityProperty(SQLType.NVarChar, 2500, true)]
[EntityDescription("Description for the new object being created automatically.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
EntityTypeID
[Key] Indicates what type of entity you want to create a corrosponding new item against.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false, IsEntityTypeLink = true)]
[EntityKeyProperty]
[RequiredNoDefaultIDValidation]
Guid EntityTypeID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
NewEntityTypeID
[Key] Indicates what type of new item you want to create against any new EntityTypeID.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false, IsEntityTypeLink = true)]
[EntityKeyProperty]
[RequiredNoDefaultIDValidation]
Guid NewEntityTypeID { get; set; }
Property Value
Type | Description |
---|---|
Guid |