I have a class with an IDictionary. The size of this object isn't fix to any particular size. The idea with this is to have a Dynamic Schema of my object. I want to store this object in the TableStorage. How can I do this? And how can I retrieve this information from store after this inside my object with the IDictionary again??
Thanks!!
Dictionaries by default are not serializable. An object must be serializable in order to be saved to TableStorage. I suggest you use List or Array type of objects or write your own serializer for Dictionary if List or Arrays are not good enough for you.