我正在尝试使用 AutoFac 执行以下操作(样本取自此处和此处):
builder.Register(c => c.Resolve<IDocumentStore>().OpenSession())
.InstancePerLifetimeScope();
问题是,在当前版本的 AutoFac 中,我得到一个编译错误c.Resolve
有人可以告诉我如何注册一个实例方法IDocumentSession
给我的.IDocumentStore
OpenSession()