Example #1
0
 /// <summary>
 /// Get the db connection up and running.
 /// </summary>
 /// <returns></returns>
 private async Task CreateDBConnection()
 {
     if (_db == null)
     {
         _db = await SQLiteDb.DB();
     }
 }