fsprojects / AzureStorageTypeProvider

An F# Azure Type Provider which can be used to explore Blob, Table and Queue Azure Storage assets and easily apply CRUD operations on them.
http://fsprojects.github.io/AzureStorageTypeProvider/
The Unlicense
84 stars 34 forks source link

Provide the ability to lazily yield rows from Table storage #40

Open isaacabraham opened 10 years ago

isaacabraham commented 10 years ago

This can be accomplished using the continuation token in Azure Table Storage.

isaacabraham commented 8 years ago

Not sure how this would work in the context of Async though.

stewart-r commented 8 years ago

Something like this?

http://tomasp.net/blog/async-sequences.aspx/

isaacabraham commented 8 years ago

Yeah, I had thought of that. I think it's probably overkill to add an entire CE just for this though. An alternative is to simply leaves things as they are or to only add it in for the synchronous version.