While getting familiar with RavenDb I've stumbled into one important question - is it possible to open session, load document, then close session, edit previously loaded document, open another session and update document in the database?
All examples provided in documentation demonstrates document's editing inside one single session only. Also I am aware about patch operations, but both scenarios does not fit my demands.
Maybe there is something resembling EF's SaveOrApdate() or another mechanism I don't know yet?
Thanks.