Autofac配置

发布于 2024-12-08 14:35:00 字数 342 浏览 0 评论 0原文

我刚刚开始使用 Autofac,我正在尝试配置一个简单的注册,根据文档,这应该有效:

var builder = new ContainerBuilder();
builder.RegisterType<CurrentUserInfo>().As<ICurrentUserInfo>();

但我得到:

类型参数数量不正确

根据文档:

 _containerProvider = new ContainerProvider(builder.Build());

但没有构建方法...

I am just starting with Autofac and I am trying to configure a simple registration, according to the docs this should work:

var builder = new ContainerBuilder();
builder.RegisterType<CurrentUserInfo>().As<ICurrentUserInfo>();

But I am getting:

Incorrect Number of type parameters

And according to the docs:

 _containerProvider = new ContainerProvider(builder.Build());

But there is no Build Method...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那伤。 2024-12-15 14:35:00

重新启动 Visual Studio..损坏的缓存或其他东西

Restarted Visual Studio..corrupted cache or something

橘和柠 2024-12-15 14:35:00

确保您已引用 Autofac.dllAutofac.Configuration.dll

Make sure you have referenced both Autofac.dll and Autofac.Configuration.dll.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文