Is it possible to connect to an embedded DB with R

2020-02-06 18:18发布

I'm playing with Raven DB and am wondering if it's possible to connect to an embedded DB with Raven Management Studio. Has anyone ever done this?

1条回答
贪生不怕死
2楼-- · 2020-02-06 19:04

If I understood you correct and you mean the Web UI, you simply have to enable the embedded web server.

var documentStore = new EmbeddableDocumentStore
{
  DataDirectory = "Data",
  UseEmbeddedHttpServer = true
};

See http://ravendb.net/docs/server/deployment/embedded

Also make sure to include Raven.Studio.xap in the root of your web application

查看更多
登录 后发表回答