Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 6 down vote accepted

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

share|improve this answer

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.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.