What is the difference between doing the following:
async Task<T> method(){ var r = await dynamodb.GetItemAsync(...) return r.Item; }
against
async Task<T> method(){ var task = dynamodb.GetItemAsync(...) return task.Result.Item; }
in my case, for some reason, only the second one works. The first seems to never end.
c # asynchronous amazon-dynamodb async-await task
luis
source share