Ninject:如何将开放泛型与多个类型参数绑定?

发布于 2024-11-25 08:22:15 字数 598 浏览 2 评论 0原文

我正在使用 Ninject 2.2,并且尝试为采用两个类型参数的开放泛型设置绑定。根据 qes 的 回答,绑定 IRepository< 的正确语法;T>Repository 是这样的:

Bind(typeof(IRepository<>)).To(typeof(Repository<>));

如果IRepository 仅接受一个类型参数,但如果需要更多类型参数,则会中断(给出 Using the generic type 'Repository' require 2 type argument 编译时错误。 )

如何将 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 技术交流群。

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

发布评论

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

评论(1

九八野马 2024-12-02 08:22:15
Bind(typeof(IRepository<,>)).To(typeof(Repository<,>));

尝试一下....

Bind(typeof(IRepository<,>)).To(typeof(Repository<,>));

Try that....

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