Syntax to perform string operations at Azure Table using Azure Storage Explorer

azure, azure-storage, azure-table-storage

Solution

Azure Table Storage supports only a subset of OData query operations thus you won't be able to perform query operations like `contains` etc. For a list of supported query options, you may find this link useful: http://msdn.microsoft.com/en-us/library/windowsazure/dd894031.aspx.

Problem

I need to learn how to perform string operations such as 'contains', 'like' and basic string operations supported by SQL through SSMS. Here I am using Azure Storage Explorer to query Azure Tables. I followed this link but it only provides solution to few query commands. http://msdn.microsoft.com/en-us/library/windowsazure/ff683669.aspx

Original source