I have a working pub sub sample and I want to look at sagas. How can I configure the in mem saga persistence?
Asked
Active
Viewed 317 times
2 Answers
3
Running the host in the Lite (default) profile will automatically use the InMemory persister.

Andreas Öhlund
- 5,263
- 20
- 24
-
In the end all I needed to do was add a reference to SQL Lite assmebly so it seems SQLLite is the default. – Neil Apr 07 '11 at 09:13
-
Sqlite is used when using the integration profile. If you copied the pubsub sample this is probably already set in you debug-> commandline parameters if you look at the properties of the csproj – Andreas Öhlund Apr 07 '11 at 10:56
0
Right-click on the project file and click on Properties, then in the property pages, navigate to the Debug tab and enter NServiceBus.Lite under Command line arguments. This tells NServiceBus not to run the service in production mode while we're just testing.

Dzianis Yafimau
- 2,034
- 1
- 27
- 38