Azure Table Storage rejects an entity with a Property whose value is an Interface
- by Andrew B Schultz
I have a type called "Comment" that I'm saving to Azure Table Storage. Since a comment can be about any number of other types, I created an interface which all of these types implement, and then put a property of type ICommentable on the comment. So Comment has a property called About of type ICommentable.
When I try to save a Comment to Azure…