コード例 #1
0
 public AppDatabase(ISqLiteService sqLiteService)
 {
     _connection = sqLiteService.GetConnectionAsync();
     _connection.CreateTableAsync <Session>().Wait();
 }
コード例 #2
0
 public ItemDatabase(ISqLiteService sqLiteService)
 {
     _connection = sqLiteService.GetConnectionAsync();
     _connection.CreateTableAsync <Item>().Wait();
 }