I have a denormalized document structure in RavenDB which I want to updated, but I dont want to send the entire document when most of it will remain the same. I have decided to use the 'patch' functionality, but it is behaving oddly, and I dont know why.
My document looks like this:
{
"AnnouncementId": "06ffbd10-1820-4a79-8294-550c0d12dc96",
"Author": {
"IsSystem": false,
"DisplayName": "James Hohepa",
"Id": "Asdadsa",
"OriginatedFromRemoteGeographicRegion": false
},
"FeedOwner": "25eb541c-b04a-4f08-b468-65714f259ac2",
"Discussions": [
{
"Id": "9e5c61df-ac63-45d3-9821-79cc72e7c06a",
"Author": {
"IsSystem": false,
"DisplayName": null,
"Id": null,
"OriginatedFromRemoteGeographicRegion": false
},
"CreationDate": "2012-05-04T11:53:37.1570000Z",
"Text": "sss"
}
],
"MessageBody": "You have been asked to...",
"Labels": [
{
"IsUser": false,
"Text": "Mine"
},
{
"IsUser": false,
"Text": "Incomplete"
},
{
"IsUser": true,
"Text": "Do To Today"
}
],
"CreationDate": "2012-05-03T13:41:26.0925844"
}
Then, I create a new 'Discussion' object, and patch using this code:
feed.DatabaseCommands.Patch(
documentId,
new[]
{
new PatchRequest
{
Type = PatchCommandType.Add,
Name = "Discussions",
Value =
RavenJObject.FromObject(discussion)
}
});
The result in the database is this:
{
"AnnouncementId": "06ffbd10-1820-4a79-8294-550c0d12dc96",
"Author": {
"IsSystem": false,
"DisplayName": "James Hohepa",
"Id": "Asdadsa",
"OriginatedFromRemoteGeographicRegion": false
},
"FeedOwner": "25eb541c-b04a-4f08-b468-65714f259ac2",
"Discussions": [
{
"Id": "9e5c61df-ac63-45d3-9821-79cc72e7c06a",
"Author": {
"IsSystem": false,
"DisplayName": null,
"Id": null,
"OriginatedFromRemoteGeographicRegion": false
},
"CreationDate": "2012-05-04T11:53:37.1570000Z",
"Text": "sss"
},
{
"Id": "68d51d02-b005-4b82-95b9-b9073d295393",
"Author": {
"IsSystem": false,
"DisplayName": null,
"Id": null,
"OriginatedFromRemoteGeographicRegion": false
},
"CreationDate": "\/Date(1336133257534)\/",
"Text": "new comment"
}
],
"MessageBody": "You have been asked to...",
"Labels": [
{
"IsUser": false,
"Text": "Mine"
},
{
"IsUser": false,
"Text": "Incomplete"
},
{
"IsUser": true,
"Text": "Do To Today"
}
],
"CreationDate": "2012-05-03T13:41:26.0925844"
}
(Notice how the new Discussion.CreationDate is in JSON format, might be irrelevant)
Then I patch the document again, to add ANOTHER new collection item, but instead of Raven ADDING a new item, it seems to UPDATE the last added item's CreationDate (it doesnt update the Text or Id, so I know its not 'overwriting' the element)
{
"AnnouncementId": "06ffbd10-1820-4a79-8294-550c0d12dc96",
"Author": {
"IsSystem": false,
"DisplayName": "James Hohepa",
"Id": "Asdadsa",
"OriginatedFromRemoteGeographicRegion": false
},
"FeedOwner": "25eb541c-b04a-4f08-b468-65714f259ac2",
"Discussions": [
{
"Id": "9e5c61df-ac63-45d3-9821-79cc72e7c06a",
"Author": {
"IsSystem": false,
"DisplayName": null,
"Id": null,
"OriginatedFromRemoteGeographicRegion": false
},
"CreationDate": "2012-05-04T11:53:37.1570000Z",
"Text": "sss"
},
{
"Id": "8ef0475c-40da-41ee-864b-ad3b90922f23",
"Author": {
"IsSystem": false,
"DisplayName": null,
"Id": null,
"OriginatedFromRemoteGeographicRegion": false
},
"CreationDate": "2012-05-04T11:55:39.6010000Z",
"Text": "iii"
},
{
"Id": "2fc67ef6-16c8-4a54-9c4c-76ea7aadabff",
"Author": {
"IsSystem": false,
"DisplayName": null,
"Id": null,
"OriginatedFromRemoteGeographicRegion": false
},
"CreationDate": "2012-05-04T11:58:20.5040000Z",
"Text": "jjj"
},
{
"Id": "68d51d02-b005-4b82-95b9-b9073d295393",
"Author": {
"IsSystem": false,
"DisplayName": null,
"Id": null,
"OriginatedFromRemoteGeographicRegion": false
},
"CreationDate": "2012-05-04T12:07:37.5340000Z",
"Text": "new comment"
}
],
"MessageBody": "You have been asked to...",
"Labels": [
{
"IsUser": false,
"Text": "Mine"
},
{
"IsUser": false,
"Text": "Incomplete"
},
{
"IsUser": true,
"Text": "Do To Today"
}
],
"CreationDate": "2012-05-03T13:41:26.0925844"
}
All the second patch seems to be doing is changing the datetime from JSON format, to ISO format - instead of ADDING a new item to the collection.
If I perform a 3rd patch, it behaves as an ADD (good), then the 4th patch behaves as a MODIFY again... ADD, MODIFY, ADD, MODIFY, ADD, MODIFY, ADD, MODIFY, and so on.
Any ideas? Thanks