store = new EmbeddableDocumentStore { DataDirectory = "Data", UseEmbeddedHttpServer = true //,Url = "http://localhost:123/sk" };
I want to use Management Studio to browse the data. How do I do this?
store = new EmbeddableDocumentStore { DataDirectory = "Data", UseEmbeddedHttpServer = true
,Url = "http://localhost:8080" }; store.Initialize(); NonAdminHttp.EnsureCanListenToWhenInNonAdminContext(8080);
using (var session = store.OpenSession()) { session.Store(new Company...