コード例 #1
0
 /// <summary>
 /// Deletes everything in the SQLite database, and then re pulls all data
 /// </summary>
 /// <param name="UserName">the username of the expected data</param>
 public async void Resync(string UserName)
 {
     DBConnection.DeleteAll <Model.Account>();
     Data.Database Db    = new Data.Database();
     bool          error = await Db.GetAccounts(UserName);
 }