Hi Everyone,
I wanted to check if anyone has some experience with performing Entity Queries via an Entity Group transaction.
I am able to perform requests via the transaction when using the following resource request format:
http://myaccount.table.core.windows.net/Blogs(PartitionKey='Channel_19',RowKey='2')
But if I use:
http://myaccount.table.core.windows.net/Blogs()?$filter=PartitionKey%20eq%20'Channel_19'%20and%20RowKey%20eq%20'2'
I get the following error:
HTTP/1.1 400 Bad Request
DataServiceVersion: 1.0;
Content-Type: application/xml
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<code>InvalidInput</code>
<message xml:lang="en-US">0:One of the request inputs is not valid.
RequestId:27bb25b0-85ab-4fd9-9f2d-505e49fb76d9
Time:2012-04-25T15:06:43.6439345Z</message>
</error>
I am trying to get multiple random access records from one table/partition in a single round trip, any suggestions would be appreciated.
Thanks in advance, if I can get this working it will really optimise some read heavy situations!