We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
On windows you need sqlite3.dll, get it from http://www.sqlite.org/download.html (Search down for sqlite-dll-win32-XXXXXX.zip)
Have a class inheriting IMvxServiceConsumer Then simple call:
var m = this.GetService(); ISQLiteConnection Sqlite = m.Create("mydatabasefile");
Sqlite is an object implementing SQLiteConnection from sqlite-net, so go Check out their documentation for usage.