Azure: Flexible schemas using TableStorage

88 views Asked by At

I need to make an asp.net MVC 2 c# webapp where each tenant could define some special fields to a class. So for example, in the same app some users will have the field "age", other users will have other field and not necessarily "age". Which is the best way to do this? There is any blog/tutorial/book with an example of this?

Thanks!

2

There are 2 answers

0
Igorek On

As I commented in your other similar question, you can use List or Array objects to store dynamic properties. They are serializable and will persist to TableStorage.