Ninject:如何将开放泛型与多个类型参数绑定?
我正在使用 Ninject 2.2,并且尝试为采用两个类型参数的开放泛型设置绑定。根据 qes 的 回答,绑定 IRepository< 的正确语法;T>
到 Repository
是这样的:
Bind(typeof(IRepository<>)).To(typeof(Repository<>));
如果IRepository
仅接受一个类型参数,但如果需要更多类型参数,则会中断(给出 Using the generic type 'Repository
编译时错误。 )
如何将 IRepository
绑定到 Repository
?
谢谢。
I'm using Ninject 2.2, and I'm trying to setup a binding for an open generic that takes two type arguments. According to this answer by qes, the correct syntax to bind IRepository<T>
to Repository<T>
is this:
Bind(typeof(IRepository<>)).To(typeof(Repository<>));
The above syntax works perfectly if IRepository
takes just one type argument, but breaks if it takes more (gives a Using the generic type 'Repository<T,U>' requires 2 type arguments
compile time error.)
How can I bind IRepository<T,U>
to Repository<T,U>
?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下....
Try that....