SQL Save Service

I am trying to run a sample code from the Workflow Foundation that uses persistence service features. In the code I noticed:

Initial Catalog=SqlPersistenceService;Data Source=localhost;Integrated Security=SSPI;

      

When I run the code, I get an exception. How do I enable persistence services on my SQLEXPRESS server?

0


a source to share


1 answer


Cm %WINDIR%\Microsoft.NET\Framework\v3.0\Windows Workflow Foundation\SQL\EN

. These are scripts that allow SqlWorkflowPersistenceService

.



You will need SqlPersistenceService_Schema.sql

and SqlPersistenceService_Logic.sql

. First, the structure of the database and tables is defined, and the second is the stored procedures.

+1


a source







All Articles