I've got a table 'user' in a sqlite database. I've got the app.config setup ok because SubCommander generates the records, but when I try and do
User u = new User() { UserName = userName, Name = name };
DB.Save<User>(u);
it chucks an exception inside the SQliteDataProvider (line 246: object result = cmd.ExecuteScalar();):
SQLite error
no such table: user
Anyone else come across this?