Do you know of a good business rule engine for .Net? I know Drools.Net is one but it seems to me that its inactive. There is also NXBRE but seems to me that it is not solid enough. Does any body here have a good one? Please suggest.

Update 1,

I did a research based on the suggestions below. Seems to me that Windows Workflow Foundation is enough to what I wanted to do. Since I'm using WCF it would be a good match. But I'm still haven't decided yet.

Best regards,

link|improve this question

63% accept rate
I would prefer something that uses the "Rete Algorithm". – Shen Lance Feb 22 at 3:07
1  
Have you seen rule.codeeffects.com ? I don't think they use the Rete, though. – Simon Feb 24 at 3:06
3  
As a note, it's usually pays off by re-evaluating your real need for rete. You'd widen the range of choices of BRMs if you really don't need rete and only require it because you think you might need it in the future. Most of mid-sized clients we have don't use/need rete algorithm. In most cases it's MUCH faster and safer if you evaluate two - three rules in a row based on the outcome of a previous rule instead of letting the engine decide how to evaluate a large rule set. – Kizz Feb 24 at 3:13
@Kizz Right. I thought that I might need rete in the future. But at this point, you are correct. I will consider using BRM's that is not using rete algorithm. Thank you. I'm testing some of it now like Simon mentioned above. – Shen Lance Feb 25 at 2:05
feedback

5 Answers

You can use the rules engine that is part of the Windows Workflow Foundation.

  • It is a forward chaining rule engine only
  • It is free
  • You can enable rule execution tracing

etc.

From Acumen Business you can download the Rule Manager. There is an example rule policy that you can export to WWF. It will generate a solution file and sample for you. That should give you a rough idea.

See also

link|improve this answer
feedback

I have used CSLA.net its free, but he writes a book that might help you understand whats going on

http://www.lhotka.net/cslanet/

link|improve this answer
feedback

IBM ILOG Jrules uses Rete Algorithm and it has .net support too.

link|improve this answer
feedback

Check out Biztalk's BRE. If your willing to invest a small amount of money into the solution then Biztalk is an option.

http://www.microsoft.com/biztalk/en/us/business-rule-framework.aspx

link|improve this answer
feedback

Check out Common Knowledge @ Object Connections. I have used the Delphi SDK but they also have a .NET SDK. The visual editor is very good. One issue is a lack of autocompletion but they have just tweeted that it is about to be added.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.