Even using try and catch I could get a clear error when trying to do a this code:
var query = new TableQuery().Take(10);
var result = await table.ExecuteQuerySegmentedAsync(query, null);
and I removed a field in the table but forgot to remove the field in my class. I spend hours try to figure out why the function was stopping.
Even using try and catch I could get a clear error when trying to do a this code: var query = new TableQuery().Take(10);
var result = await table.ExecuteQuerySegmentedAsync(query, null);
and I removed a field in the table but forgot to remove the field in my class. I spend hours try to figure out why the function was stopping.