EntityObjectIsLoaded Property |
Gets a value indicating whether the associated data for this domain object is loaded.
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic virtual bool IsLoaded { get; }
Public Overridable ReadOnly Property IsLoaded As Boolean
Get
public:
virtual property bool IsLoaded {
bool get ();
}
abstract IsLoaded : bool with get
override IsLoaded : bool with get
Property Value
Type:
Booleantrue if this instance data is loaded; otherwise,
false.
Remarks
This property returns true when the "normal" data attributes are loaded for the domain object.
This does not include any BLOB or other types of lazy-loading data attributes.
The result is used for optimization purposes when mass preloading objects.
See Also