The easiest way to get the full ServiceStack TODO app:
1) Create a new ASP.NET Empty Web Application
2) Install ServiceStack.Host.AspNet and ServiceStack.OrmLite.SqlServer
PM> Install-Package ServiceStack.Host.AspNet
PM> Install-Package ServiceStack.OrmLite.SqlServer
3) Press Ctrl + F5 to launch the application
4) After playing with the TODO app, browse the page http://localhost:{port}/metadata
5) Play with services, for example http://localhost:{port}/todos
6) Look at the source to see how ServiceStack integrates, the main parts are:
- App_Start / AppHost.cs (setting ServiceStack AppHost)
- App_Start/WebServiceExamples.cs ( Hello Todo)
, ServiceStack .