如何将泛型类型与约束绑定

发布于 2024-12-29 04:09:01 字数 697 浏览 0 评论 0 原文

我正在使用 Ninject DI 容器。我已经有了两个

public interface IRepository<T> where T : AbstractEntity<T>, IAggregateRoot
{ 
    // methods signatures
}

public class Repository<T> : IRepository<T> where T : AbstractEntity<T>, IAggregateRoot
{
    // implementations
} 

然后我尝试将它们绑定在一个单独的模块中

public class DataAccessModule : Ninject.Modules.NinjectModule
{
    public override void Load()
    {
        this.Bind<IRepository<>>().To<Repository<>>();
    }
}

,其中 this.Bind().To>(); 不被识别为语句。

我如何进行绑定?

I'm using Ninject DI container. And I've got the two

public interface IRepository<T> where T : AbstractEntity<T>, IAggregateRoot
{ 
    // methods signatures
}

public class Repository<T> : IRepository<T> where T : AbstractEntity<T>, IAggregateRoot
{
    // implementations
} 

Then I'm trying to bind them in a separate module

public class DataAccessModule : Ninject.Modules.NinjectModule
{
    public override void Load()
    {
        this.Bind<IRepository<>>().To<Repository<>>();
    }
}

where this.Bind<IRepository<>>().To<Repository<>>(); is not recognized as a statement.

How do I make a bind?

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

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

发布评论

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

评论(1

橘和柠 2025-01-05 04:09:01

此处抓取这篇文章。看起来这对他们有用:

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

Snagged this piece from here. Looks like it worked for them:

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