NInject 相当于 Autofac 的 AsClosedTypesOf

发布于 2024-12-28 06:53:46 字数 375 浏览 0 评论 0原文

以下使用 Autofac 的代码的 NInject 等效项是什么:

var builder = new ContainerBuilder();

System.Reflection.Assembly assembly = ...;
builder.RegisterAssemblyTypes(assembly).AsClosedTypesOf(typeof(OpenGeneric<>))
                                       .As<IAnInterface>();

var resolved = container.Resolve<IEnumerable<IAnInterface>>();

What is the NInject equivalent of the following code that uses Autofac:

var builder = new ContainerBuilder();

System.Reflection.Assembly assembly = ...;
builder.RegisterAssemblyTypes(assembly).AsClosedTypesOf(typeof(OpenGeneric<>))
                                       .As<IAnInterface>();

var resolved = container.Resolve<IEnumerable<IAnInterface>>();

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

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

发布评论

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

评论(1

篱下浅笙歌 2025-01-04 06:53:46

使用 Ninject 3.0.0-rc3,您可以使用

kernel.Bind(
      x => x.FromThisAssembly()
            .SelectAllClasses().InheritedFrom(typeof(BaseService<>)).WhichAreGeneric()
            .BindToAllInterfaces());

根据您的要求,您可以删除 WhichAreGeneric 语句。 .SelectAllClasses().InheritedFrom(typeof(BaseService<>)).WhichAreGeneric() 选择要创建绑定的类。

约定确保接口和实现类必须具有相同的开放类型参数。例如,如果

interface IBar<T1, T2>
interface IBaz<T>
interface IFoo
class Bar<T1, T2> : IBar<T1, T2>, IBaz<T1>, IFoo
class Foo : IBar<int, int>, IFoo

IBarBar 的唯一有效接口。但对于 Foo 来说,IBar, IFoo 都是有效的。

Using Ninject 3.0.0-rc3 you can use

kernel.Bind(
      x => x.FromThisAssembly()
            .SelectAllClasses().InheritedFrom(typeof(BaseService<>)).WhichAreGeneric()
            .BindToAllInterfaces());

Depending on your requirements you can probably remove the WhichAreGeneric statement. .SelectAllClasses().InheritedFrom(typeof(BaseService<>)).WhichAreGeneric() selects the classes to which a binding is created.

Conventions ensures that the interface and the implementation class must have the same open type arguments. E.g. In case

interface IBar<T1, T2>
interface IBaz<T>
interface IFoo
class Bar<T1, T2> : IBar<T1, T2>, IBaz<T1>, IFoo
class Foo : IBar<int, int>, IFoo

IBar<T1, T2> is the only valid interface for Bar<T1, T2>. But for Foo both IBar<int, int>, IFoo are valid.

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