I can connect to a FileStore
via a RavenDBServer
instance in my MVC application provided the FS is initialized, so (for example), I create a RavenDBServer
with the DataDirectory
set:
To be clear: this is running as an embedded instance.
var config = new RavenConfiguration
{
DataDirectory = "~\\App_Data\\Database",
DatabaseName = "test"
};
var server = new RavenDbServer(config);
server.UseEmbeddedHttpServer = true;
Then go to the Raven UI, add a FS called test-fs
, add the following to the initialization code:
server.FilesStore.DefaultFileSystem = "test-fs";
server.FilesStore.Initialize();
Then when I call:
server.FileStore.OpenAsyncSession("test-fs");
we're all good.
Ideally, I don't want to have to go about doing that as it's cumbersome, and involves changing code. SO. I put this in:
server.FilesStore.AsyncFilesCommands.Admin.CreateOrUpdateFileSystemAsync(new FileSystemDocument(), "test-fs");
but this never creates the FileSystems
folder in the App_Data
folder, and any attempt to OpenAsyncSession
always results in an error stating that the test-fs
could not be opened.
How can I create the FS on initialisation? I'm doing this within an MVC (5.2) application.
I use static FileStoreHolder to provide FilesStore. As is recomended for DocumentStore.
then when I need FS session I get it this way: