I need to create a system with dynamic rules created/edited bythe user on the UI using aspnet core

638 views Asked by At

I need to create a system with dynamic rules created/edited bythe user on the UI using aspnet core. I researched some frameworks and the best i found was the NRULES, but i belive that is not gonna solve my problem. Anyone has some advise about how to do this? Or any tool or framework that i can use instead of creating all the logic.

Thanks A lot.

1

There are 1 answers

0
David B On

This might be a late answer. Stick to NRules, it allows for dynamic rules. There are many complex rule engines you can buy, but if you want to roll your own - your best bet is to figure out what the rules are first and how deep you want the rules to be layered. i.e. some complex business processes require thousands of lines of code to meet the business requirement. Also, building UI for rules can get out of hand if you don't know the complexity of the rules you are trying to build. So find the most complex rules in your business domain and build backwards otherwise there is no end to rules development as rules constantly change.