Entity instantiation
A quick explanation of how new instances of entities can be created during execution.
Anywhere in code (functions, rules, calculated properties), you can create new entities on the fly. For instance, when you have an Entity named 'Person', you can create an instance like this: new Person()
A few examples:
alternatively:
Calculated properties work as expected. Assuming Person has a calculated property named 'FullName' that combines the first and last name properties:
Last updated