user901366
user901366

Reputation: 91

Effective custom azure table storage entity serialization?

Is there any way to effectively customize the serialization of an azure table storage entity? I already read many posts/topics about ReadingEntity/WritingEntity events, but I think that isn't sufficient for what I need. I want that my entities support:

  1. Enum types properties;
  1. Read-only properties;
  1. Transient/calculated properties;
  1. Custom names to PartitionKey/RowKey elements;
  1. Don't have a public default constructor.

Well, the issues 1 and 2 remain a big problem for me, anybody has any idea for I accomplish all 5 goals?

Thank's.. Best regards..

Upvotes: 3

Views: 2896

Answers (1)

Joannes Vermorel
Joannes Vermorel

Reputation: 9255

I would suggest the FatEntity approach of Lokad.Cloud. It's simpler and more efficient in our experience.

Upvotes: 1

Related Questions