Hi,
We're using business rules to run a number of calculations on an entity. A number of the calculations are dependent on other calculations completing first:
e.g.
c = a + b
d = c - e
In this example, c must first be calculated before the second calculation can take place. At the moment, using business rules, this requires us to save the Record twice. The result of the first calculation must be committed to the db before the second calculation can run.
If we replaced our business rules with a c# plugin, would the behavior still be the same? Or would we be able to complete both of the above calculations in one plugin trigger?