Hello,
Is it possible to override the default behavior for a computed field so that the property can be set? Here's an example:
I have an Order object that has the following properties:
- Subtotal
- Tax
- Shipping
- Total
The Total property is based on a calculated field. The problem is that it won't have a value until the Order is persisted to the database. I would like to be able to calculate the total and use it in memory before the object is persisted. Is this possible?
Thanks,
austinHodge