public loadRelationshipForAccess( entity as Object, propertyPath as String ) as Object:
Resolves one relation requested by a generated lazy property getter.
This method is the reflected boundary used by the runtime. Application code reads the entity property directly; no proxy or explicit load call is exposed in the entity model.
| Parameter | Description |
|---|---|
entity | Managed source entity. |
propertyPath | Complete mapped relationship path. |
Direct related entity, mutable list, or null.
order = manager.find<Order>(42) print(order.customer.name) # Loads customer when declared lazy.