I've just started playing about with RavenDB and I am able to add, delete and query for documents from the database. However when i view the database studio on localhost:8080 it shows the database as having 0 documents. Does anyone have any idea why this might be ?
Asked
Active
Viewed 220 times
1
-
1Just to be sure, when you have this at the end of your link: **/raven/studio.html#/databases** , do you see more than one database? If you see only one database and double click it, does it have any content? – Halvard Aug 08 '13 at 09:40
-
Only one database with no content in it, yet i can use the data in the application. – David Clapperton Aug 22 '13 at 15:10
-
5figured it out i was saving into the system database – David Clapperton Aug 22 '13 at 15:26
-
@DavidClapperton: Can you post this answer and mark it as complete? You'll get a Self-Learner badge for it ;-) http://stackoverflow.com/help/badges/14/self-learner – Dominic Zukiewicz Jun 03 '14 at 16:14
1 Answers
0
Change the connection string to contain the database name
<add name="RavenDB" connectionString="Url=http://localhost:8080;Database=MyDatabaseName" />

matt_lethargic
- 2,706
- 1
- 18
- 33