是否可以使用 Raven Management Studio 连接到嵌入式数据库

发布于 2024-11-27 20:47:36 字数 74 浏览 0 评论 0原文

我正在使用 Raven DB,想知道是否可以使用 Raven Management Studio 连接到嵌入式数据库。有人这样做过吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春庭雪 2024-12-04 20:47:36

如果我理解正确并且您指的是 Web UI,那么您只需启用嵌入式 Web 服务器即可。

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

请参阅 http://ravendb.net/docs/server/deployment/embedded

另请确保将 Raven.Studio.xap 包含在 Web 应用程序的根目录中

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文