If you add, delete or rename a property on a persisted entity, what's the easiest way to update the documents in RavenDB?

link|improve this question
feedback

2 Answers

up vote 8 down vote accepted

RavenDB supports PATCH commands, see the docs for more info for more info. This way you can update a document directly without having to pull it from the server, update it and then send it back.

Also you can run patches over multiple documents by using Set-based queries, see here for some more info. This lets you do the equivalent of

UPDATE Users
SET IsActive = false
WHERE LastLogin < '2010-05-10'
link|improve this answer
feedback

raven also has object tracking. so the following works:

var doc = _session.Load<MyDocType>(docId);
doc.PropertyToChange = "New Value";
_session.SaveChanges();
link|improve this answer
whyyyyy would you donw vote this!! GET A LIFE!! – iwayneo Apr 11 at 6:26
1  
Sorry, that was not an intentional downvote, must have clicked it by mistake. – jlew Apr 23 at 15:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.