Used to read the attribute's data value as TOraObject, or to assign a TOraObject value to the contents of an attribute.
property AttrAsObject[const Name: string]: TOraObject;
Use the AttrAsObject property to read the attribute's data value as TOraObject, or to assign a TOraObject value to the contents of an attribute. Type of an attribute specified by the Name parameter must be Object. You can use AttrAs... properties to access its attributes after.
Another way to get an attribute value of a nested object is using of the name path.
Example 1. Street1 := MyObject.AttrAsObject('Address').AsString('Street'); Example 1. Street2 := MyObject.AttrAsString('Address.Street');