OpenXava doc says:
A calculated property is a property that does not store its value in the database but it's calculated any time the property is accessed.
Is there a way to persist the calculated property?
The reason to do that would be:
- The calculation is so heavy/complex that executing it on demand at every access would be unfeasible;
- The calculation revolves around some random stuff that would not be the same every time the property is accessed.
Another way to put this question: Is there a way to store a property that was not entered by the user, but obtained from another source?