Ravendb documentation says to simply set the DataDirectory name before initializing the DocumentStore, but DocumentStore doesn't have a DataDirectory property :(
var documentStore = new DocumentStore {
DataDirectory = "path/to/database/directory"
};
documentStore.Initialize();
The code above doesn't compile :(