Add enum support to TableEntity
See original GitHub issueCurrently TableEntity
skips enum properties from read/write operations. I think it should be pretty straightforward to add support to enums given that int/long values are supported.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:16
- Comments:17 (8 by maintainers)
Top Results From Across the Web
Adding TableEntity Enum Text Values to Azure Table Storage
Adding TableEntity Enum Text Values to Azure Table Storage ... This is a blog to help me remember some of the coding challenges...
Read more >Storing a enum list in azure table storage
Select(s => (ExtractedType)Enum. ... ReadEntity and TableEntity. ... built-in serializer/deserializer and add in support for the List type.
Read more >TableUpdateMode Enum (Azure.Data.Tables)
Defines the behavior of UpdateEntity<T>(T, ETag, TableUpdateMode, CancellationToken), UpdateEntityAsync<T>(T, ETag, TableUpdateMode, CancellationToken), ...
Read more >C# – Storing a enum list in azure table storage
I am trying to store a list of enum object in Azure table storage but when ... public enum ExtractedType { Image, Video...
Read more >Extension Method to Seed Enum Values into Database Table
Overview¶. When an enum is persisted in a database table, it is better if the Code First entity doesn't use a (SQL Server)...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
We mirror the property types supported by the service, which is why it isn’t supported natively. We support it using the flatten methods. Thanks!
This is so stupid, there is no warning or anything so if you forget to cast to int it just does not work.