最近我通过包管理器安装了RavenDB
(一堆程序集:客户端、数据库、嵌入式) 。NuGet
我是这样配置DocumentStore
的:
public override void Load()
{
Bind<IDocumentStore>().ToMethod(
context => {
var documentStore = new EmbeddableDocumentStore {
Url = "http://localhost:8080",
DefaultDatabase = "ampDatabase",
UseEmbeddedHttpServer = true
};
return documentStore.Initialize();
}
).InSingletonScope();
Bind<IDocumentSession>().ToMethod(context =>
context.Kernel.Get<IDocumentStore>().OpenSession()
).InRequestScope();
}
调用此代码后:
documentSession.Store(idea);
documentSession.SaveChanges();
我得到System.Net.Sockets.SocketException
:
无法建立连接,因为目标机器主动拒绝它 127.0.0.1:8080
我错过了什么?