Azure / azure-cosmos-table-dotnet

.NET SDK for Azure Cosmos Table API
14 stars 5 forks source link

Functions stop when missing fields from table storage #63

Open distorx opened 3 years ago

distorx commented 3 years ago

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.