When looking at the signature of the TableClient.QueryAsync method in Azure.Data.Tables SDK, it is not clear how to use it. It returns a AsyncPageable<T>. Fortunately that again implements the IAsyncEnumerable<T>, which means that we can use the Fsharp.Control.TaskSeq library to get the resulting entities. This is written as a reminder to myself, so that I… Continue reading Query Azure Table Storage using F#