I am looking for a way to define business rules through UI. Later, when we apply rules it will make calculations and save in other atributes in the same entity.
Here is the scenario:-
Please guide me if you have implemented something similar in OuSystems.
You can store only the required attributes in the Entity, for calculated attributes you can use aggregate's ( Query) calculated attributes. If you want to save all required attributes in entity, then you can apply your logic for calculated attributes while performing CREATE/UPDATE operation in your entity.
Your solution is not a rules engine. The idea of a rules engine is you can configure the rules runtime and let the engine evaluate them to a result.
Using aggregates will not serve the purpose.
Daniël Kuhlmann is right about it.
Hi,
You could implement this using for example the following Forge components:
Kind regards,
Daniel