Has anyone been able to create temporary tables or triggers using Microsoft's Entity Framework and SQLite? I have a working application that can create permanent tables and triggers, but not temporary ones. Listing sqlite_temp_master turns up no entries, and any attempts to interact with the temporary tables fail with "no table" errors. These interactions are taking place through a single SQLiteConnection though there is at least one other connection active in the application at the time.
I am using Database.ExecuteSqlCommand() to create the tables and triggers. If the TEMPORARY keyword is supplied, there are no errors and no tables/triggers. If the TEMPORARY keyword is not supplied, there are no errors, and permanent tables/triggers are created.
Any help would be appreciated.