Cloud Cover Episode 10 - Table Storage API
- Posted: May 07, 2010 at 8:23 AM
- 48,644 Views
- 2 Comments
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Right click “Save as…”
Show Links:
Windows Azure Guidance - Failure Recovery (via Eugenio)
SELECT INTO with SQL Azure
Application Infrastructure Virtual Learning
Windows Azure Firestarter videos
Protecting Blobs from Application Errors
Protecting Tables from Application Errors
Table Storage Backup and Restore on CodePlex
Comments have been closed since this content was published more than 30 days ago, but if you'd like to continue the conversation,
please create a new thread in our Forums,
or
Contact Us and let us know.
Follow the Discussion
Oops, something didn't work.
What does this mean?
Following an item on Channel 9 allows you to watch for new content and comments that you are interested in. You need to be signed in to Channel 9 to use this feature.What does this mean?
Following an item on Channel 9 allows you to watch for new content and comments that you are interested in and view them all on your notifications page.sign up for email notifications?
The biggest issue I have with Azure Table Storage is the lack of string comparison operators.
If I can do
.Where(a=>a.Age > 21)
and
.Where(a=>a.Name.CompareTo("Dave"))
then why can't I do
.Where(a=>a.Name.ToLower().Contains("dave"))
Is this an architectural constraint or rather an implementation limitation?
If it's an implementation limitation, then I can hope that it will be fixed in a future release.
If it's architectural, then I will have to find an alternative solution such as SQL Azure.
Hi DaveSn,
Currently, this is a limitation in the actual storage service. The LINQ provider eventually boils down to a URI with some syntax that is or isn't supported on the service head. It turns out that certain operations that are supported in relational sources are not supported in Windows Azure tables. Your specific question would entail a full-text search to be performed on an arbitrary column in Windows Azure. This is not currently supported (there is no LIKE operation). This limit might be removed over time as more features are added to the service.
If you really need full text search capability over your data - take a look at the Lucene implementation here:
http://code.msdn.microsoft.com/AzureDirectory
Remove this comment
Remove this thread
close