Hey Azure experts.
If I understand well, azure table storage entities are similar to a Hashtable containing <string, object> pairs. Therefore when I add a new field 'LastActivityTimestamp' to my entity, all previously created entites will have null for that field.
My question is how do I get all entities that have 'LastActivityTimestamp' == null ?
I tried the following query but Azure returns "One of the request inputs is not valid." in the HTTP response :
this.DataContext.Chatters.Where(chatter => chatter.LastActivityTimestamp == null || chatter.LastActivityTimestamp < minDateTime).AsEnumerable();
If I do this query : this.DataContext.Chatters.Where(chatter => chatter.LastActivityTimestamp < minDateTime).AsEnumerable();
then it returns only the entities that statisfy the filter AND have a non null value.
Any help much appreciated.