Arbitrary columns
Brought to you by:
yvesyang
The Table storage API does not allow setting arbitrary columns. That is, the API has no way for you to provide a list of tuples containing column name/value/type to store in a table row. You must create a Java object containing non-transient fields which are stored when you store the model object. In this case the model object must extend the TableStorageEntity class. However, for some use cases you do not have model objects like this available because the content is highly dynamic and not pre-determined. This is a major shortcoming that completely eliminates the table storage from some common use cases.
it has been fixed.