I am trying to run ServiceStack Examples projects. When I run the web client I am getting the following error:
{System.BadImageFormatException: An attempt wa
Set the platform target of your main project to x86 to fix this. This can be done under Project... -> Properties -> Build.
SqlLite is most likely a 32-bit components, and to be able to load it your application needs to be a 32-bit application as well (64-bit processes cannot load 32-bit components and vice versa).