I'm designing an application for a type of case management system that has a big requirement for customizable, flexible business rules. I'm planning on using the WF Rules Engine without workflow (see: here, among other examples and such).

One of the points my client brought up (justifiably so!) is whether there are extant examples of using the rules engine for a business rules engine without workflow.

My question, of course is: Has anyone used the WF Rules engine sans workflow in a production application before, and what were your experiences?

link|improve this question

feedback

4 Answers

The WF3 rules engine is still available in .NET 4.

There are available samples showing how to use the WF3 rules engine with WF4, as well as migration guidance that is specific to rules.

link|improve this answer
feedback

Josh, Do you have any example code to assist with this effort? I have some code stubbed out based on the ExternalRuleSetTool for adding/editing rule sets and I found some code here - http://www.richard-banks.org/2007/08/how-to-use-windows-workflow-rules.html that covers a lot of how to get this to work even though there sample links are broken. At any rate, what I don't see is how to return the results of RuleSet.Execute(). Obviously, providing user feedback about what went wrong while executing the rules is important. I'm sure that I am just missing something trivial but I have never worked with WF before so this is all new to me.

Thank you in advance.

link|improve this answer
I know this is a long time to wait for a response, but I'll look into writing up a sample for a blog post soon – Josh E Dec 8 '11 at 16:01
feedback

I've just finished writing a blog article on how to use WF4 as a Rule Engine - without the workflow designer. So if you for some reason absolutely don't want to use WF3, this might be of interest to you:

http://www.nilzorblog.com/2011/11/using-wf4-as-rule-engine.html

link|improve this answer
feedback

The old WF3 rules engine I believe no longer exists in .net 4 WF. I could be wrong but we dropped using it more than ago. You need to check with MS to see if its supported going forwards I'd suggest.

However according to this the new rules engine seems to be very similar - so maybe I'm wrong.

link|improve this answer
where did you hear this? That's definitely news to me... why would MS want to drop WWF? – Josh E Apr 1 '10 at 14:09
Sorry rephrased. I never said WF was being dropped. – Preet Sangha Apr 2 '10 at 1:55
The article you linked to is the same one I've used as part of my research - the external rule set toolkit works very well and is a good starting point! The article is written against .NET 3.0 / VS 2005, FYI – Josh E Apr 2 '10 at 14:22
Preet - why did your org drop using the Rules Engine? We've found that it's absurdly easy to implement a dynamic business rules engine without workflows with it... it almost seems TOO easy, ya know? – Josh E Apr 8 '10 at 15:14
We stopped using it, as we went on to use IronPython and now the DLR. This gave us much more flexibility. However we are major users of WF so our use case was very different than your. Business rules are trivial to implement in a dynamic language like that. – Preet Sangha Apr 8 '10 at 22:19
feedback

Your Answer

 
or
required, but never shown

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