EntityObjectExtendedProperties Property |
Extended properties contain temporary (not persisted) values in the object instance.
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic Dictionary<string, Object> ExtendedProperties { get; }
Public ReadOnly Property ExtendedProperties As Dictionary(Of String, Object)
Get
public:
property Dictionary<String^, Object^>^ ExtendedProperties {
Dictionary<String^, Object^>^ get ();
}
member ExtendedProperties : Dictionary<string, Object> with get
Property Value
Type:
DictionaryString,
Object
The extended properties.
Remarks
The ExtendedProperties are used by various components to store temporary data
in the object instance.
The data is not persisted, nor it is copied or handled in any way from the framework.
It is up to the users of the object to load/store the necessary data.
See Also