Skip to content

Instantly share code, notes, and snippets.

@ogail
Created May 25, 2012 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ogail/2785042 to your computer and use it in GitHub Desktop.
Save ogail/2785042 to your computer and use it in GitHub Desktop.
XML entry example for updateEntity
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<entry xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
<title/>
<updated>2012-05-25T00:18:25.0000000Z</updated>
<author>
<name/>
</author>
<id/>
<content type="application/xml">
<m:properties>
<d:PartitionKey>123</d:PartitionKey>
<d:RowKey>456</d:RowKey>
<d:Timestamp m:type="Edm.DateTime">2012-05-25T00:18:30Z</d:Timestamp>
<d:CustomerId m:type="Edm.Int32">890</d:CustomerId>
<d:CustomerName>John</d:CustomerName>
<d:IsNew m:type="Edm.Boolean">1</d:IsNew>
<d:JoinDate m:type="Edm.DateTime">2012-01-26T18:26:19Z</d:JoinDate>
<d:CustomerPlace m:type="Edm.String">Redmond</d:CustomerPlace>
</m:properties>
</content>
</entry>
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<entry xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
<title/>
<updated>2012-05-25T00:18:27.0000000Z</updated>
<author>
<name/>
</author>
<id/>
<content type="application/xml">
<m:properties>
<d:PartitionKey>123</d:PartitionKey>
<d:RowKey>456</d:RowKey>
<d:CustomerId m:type="Edm.Int32" m:null="true"></d:CustomerId>
<d:CustomerName>John</d:CustomerName>
<d:IsNew m:type="Edm.Boolean">1</d:IsNew>
<d:JoinDate m:type="Edm.DateTime">2012-01-26T18:26:19Z</d:JoinDate>
</m:properties>
</content>
</entry>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment