xamarin.formssqlite-net-extensions

How to create connection?


On this page https://bitbucket.org/twincoders/sqlite-net-extensions I found how to use SQLite-Net Extensions. But in order to start using it, there is a call:

var db = Utils.CreateConnection();

How to implement this method?


Solution

  • From the SQLite NET docs

    var db = new SQLiteConnection(sqlitePlatform, myDBFilePath);