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

Emmit entities as records #124

Open xperiandri opened 5 years ago

xperiandri commented 5 years ago

Can we emmit entities as records? To change them and execute update.

isaacabraham commented 5 years ago

@xperiandri unfortunately records are not supported by type providers (currently). You can manually do copy-and-update though, since all table entities have constructors on them. Alternatively we could look at making the table entities mutable, although I'm not so excited by the idea of doing that.

Thoughts welcome!