I'm trying to convert my WP 7.1 application to WP8. The target is still WP 7.1 but I'm attempting to debug on a WP8 device. I'm using CSharp-SQLite, but when I try to access the database and call .Open
on the connection, I get an error: A first chance exception of type 'System.IO.IsolatedStorage.IsolatedStorageException' occurred in mscorlib.ni.dll
I remember developing for WP7.1 was a nightmare because of such exceptions. Is there a reliable way to use SQLite in WP8?
EDIT: I'm sharing this database between a desktop app, WP app and an iOS app, so I need access to the tables. I can't just let an ORM wrapper create the tables for me. Is there no way to just get access tp a DbDataReader?