I have an existing SQLite database that is generated in ServiceStack ORMLite. It has a field that represents a property of type Dictionary in C#.
ServiceStack serializes this into the database as JSV which works fine for our current system that runs in all .NET.
I am working on using the existing databases for an Android implementation. Mono is (unfortunately) not an option.
I was wondering if there was a way to force ORMLite to use the JSON serialization for fields outside of actually writing a custom DialectProvider. This would allow me to easily parse the field using available JSON parsers.
Alternatively, a JSV Parser in Java would do the trick as well.
Thanks