Ejemplo n.º 1
0
 public Task <int> DropTableAsync <T>() where T : new()
 {
     return(Task.Factory.StartNew(
                () =>
     {
         SqliteSession conn = this.GetAsyncConnection();
         using (conn.Lock())
         {
             return conn.DropTable <T>();
         }
     }));
 }