Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a visual tool to view a RavenDB database?

Tags:

ravendb

I just got RavenDB to work. I realised I have to start RavenDB\packages\RavenDB.1.0.573\server.exe to access it in my application via:

    DocumentStore store = new DocumentStore()
    {
        Url = "http://localhost:8080"
    };

    store.Initialize();

Is there a tool to view the data in the database similar to SQL Server Management Studio?

like image 738
Petras Avatar asked Dec 01 '22 00:12

Petras


2 Answers

Run the server and access it using the browser, you'll get the buil-in RavenDB management Studio

http://ravendb.net/docs/intro/basic-concepts#the-management-studio

like image 132
synhershko Avatar answered Dec 21 '22 15:12

synhershko


There are two products at the time of this answer

  1. The built in web browser, as @synhershko answered.
  2. LinqPad with the RavenDb driver.
like image 29
Pure.Krome Avatar answered Dec 21 '22 14:12

Pure.Krome