Attribute owner
With this extension, custom attributes for custom entities can be implemented.
A new entity 'NameOfEntityAttribute' is created which is then available for the attribute implementation.
In addition, attributes can also be implemented directly via the extension:
The namespace of the attribute implementation is always the same as the custom entity.
If no name is specified, the implementation name is generated from the name of its custom entity and attribute:
Entity name |
Attribute name |
Implementation name |
MyDemoEntity |
NumericValueAttribute |
MyDemoEntityNumericValue |
MyDemoEntity |
TextAttribute |
MyDemoEntityText |
MyDemoEntity |
MyDemoAttr |
MyDemoEntityMyDemoAttr |
MyDemoEntity |
DemoValues |
MyDemoEntityDemoValues |