If you add, delete or rename a property on a persisted entity, what's the easiest way to update the documents in RavenDB?
raven also has object tracking. so the following works:
var doc = _session.Load<MyDocType>(docId);
doc.PropertyToChange = "New Value";
_session.SaveChanges();