What I am trying to do is load in and set the user_version (PRAGMA user_version) from my SQLite database. I am using entity framework, but if I can\'t do it through that, then I
Well...I eventually figured it out. I believe this is the best way to do it while using entity framework.
To set the user_version you need to do this...
this.DatabaseConnection.ExecuteStoreCommand("PRAGMA user_version = 5");
To get the user_version you need to do this...
long result = this.DatabaseConnection.ExecuteStoreQuery("PRAGMA user_version").FirstOrDefault();