I'm sending a Microsoft.Azure.CosmosDB.Table.TableEntity with an enum field and when it makes to cosmosdb the enum field has been dropped. So I think this happens because it's not a native type and serialization is messing up.
What is the right way of doing this?
Do I need to override ReadEntity and WriteEntity or is there any other way? I'm thinking there ought to be something like Newtonsoft's
[JsonConverter(typeof(StringEnumConverter))] attribute.