I have a set of tables in a master-detail relationship...let's call them orders and details for simplicity. In the orders entity I have added a custom property called TotalDetails. This iterates through the details related to the order and totals up the extended price (sum of price times quantity). Simple enough. Now, the details are displayed in a grid on the order form. If I change a price or quantity in the grid, I would expect the TotalDetails property to change. It doesn't. The property updates if I navigate away from the order and return to it. How do I get the custom property to update dynamically without changing entities?
Thanks!
Bill