Azure Table Storage: How can I create a dynamic where clause?
问题 Ok, so I am using Azure Table Storage for the first time in a ASP.NET MVC 3 application. I have a table entity that has a user ID as its RowKey. I have a list of user IDs and need to get all of the entities that have one of the User IDs. In traditional SQL it would be a simple OR statement in the where clause that you can dynamically add to: select * from blah where userID = '123' or userID = '456' or userID = '789' but I haven't found the equivalent in the Azure SDK. Is this possible with