Dynamic sqlWorkflowInstanceStore

776 views Asked by At

I have created an application using this http://msdn.microsoft.com/en-us/magazine/ff646977.aspx

What i need to do is callWorkflow instances store dynamically i.e before

string message = "";        
string result = client.EvaluateMortgage();

I should be able to specify the sqlworkflowinstancestore i.e where the workflow data is

Any help will be appreciated.

1

There are 1 answers

4
Jayantha Lal Sirisena On

I think you can do like this,

 SqlWorkflowInstanceStore store = new SqlWorkflowInstanceStore(connectionString);

More info

Here you can find several ways of configuring /using it