对于DI和ninject来说,我是新手,而且我有点挣扎 关于何时应该进行实际注射以及如何开始注射 结合。
我已经在我的网络应用程序中使用它,它在那里工作正常, 但现在我想在类库中使用注入。
说我有这样的课程:
public class TestClass
{
[Inject]
public IRoleRepository RoleRepository { get; set; }
[Inject]
public ISiteRepository SiteRepository { get; set; }
[Inject]
public IUserRepository UserRepository { get; set; }
private readonly string _fileName;
public TestClass(string fileName)
{
_fileName = fileName;
}
public void ImportData()
{
var user = UserRepository.GetByUserName("myname");
var role = RoleRepository.GetByRoleName("myname");
var site = SiteRepository.GetByID(15);
// Use file etc
}
}
我想在这里使用属性注入,因为我需要传入一个 我的构造函数中的文件名。如果我需要,我是否正确说 传入构造函数参数,我不能使用构造函数注入? 如果我可以使用带有附加参数的构造函数注入,怎么做 我在?
中传递了这些参数我有一个控制台应用程序,它看起来像Test类 如下:
class Program
{
static void Main(string[] args)
{
// NinjectRepositoryModule Binds my IRoleRepository etc to concrete
// types and works fine as I'm using it in my web app without any
// problems
IKernel kernel = new StandardKernel(new NinjectRepositoryModule());
var test = new TestClass("filename");
test.ImportData();
}
}
我的问题是,当我调用test.ImportData()
时,我的存储库为空 - 没有注入任何内容。我尝试过创建另一个模块并调用
Bind<TestClass>().ToSelf();
因为我认为这可能会解决TestClass
中的所有注入属性,但我无处可去。
我确定这是一个微不足道的问题,但我似乎无法找到答案 如何解决这个问题。
答案 0 :(得分:18)
你正在直接升级TestClass
,Ninject无法拦截 - 请记住,没有任何神奇的代码转换拦截你的new
等。
您应该改为kernel.Get<TestClass>
。
如果失败了,您可以在 new
之后将其注入kernel.Inject( test);
我认为维基中有一篇文章讨论Inject
vs Get
等。
请注意,通常情况下,直接Get
或Inject
来电是服务错误的服务位置,这是一个反模式。对于您的Web应用程序,NinjectHttpModule
和PageBase
是截取对象创建的钩子 - 在其他样式的应用程序中有类似的拦截器/逻辑位置可以拦截。
重新启用Bind<TestClass>().ToSelf()
,通常StandardKernel
有ImplicitSelfBinding = true
,这会使其不必要(除非您想将其范围影响为.InTransientScope()
以外的其他内容。)< / p>
最后一个风格点: - 你正在使用属性注入。这很少有很好的理由,所以你应该使用构造函数注入。
并且去购买Dependency Injection in .NET by @Mark Seemann,这里有很多优秀的帖子,其中涵盖了依赖注入区域内和周围的许多重要但微妙的考虑因素。
答案 1 :(得分:7)
行,
我已经找到了如何做我需要的东西,部分归功于你的意见Ruben。我创建了一个新模块,它基本上保存了我在类库中使用的配置。在这个模块中,我可以使用占位符接口进行绑定,也可以将构造函数参数添加到CustomerLoader。 下面是虚拟控制台应用程序的代码,用于演示两种方式。
这可能会帮助其他人开始使用Ninject!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Ninject.Core;
using Ninject.Core.Behavior;
namespace NinjectTest
{
public class Program
{
public static void Main(string[] args)
{
var kernel = new StandardKernel(new RepositoryModule(), new ProgramModule());
var loader = kernel.Get<CustomerLoader>();
loader.LoadCustomer();
Console.ReadKey();
}
}
public class ProgramModule : StandardModule
{
public override void Load()
{
// To get ninject to add the constructor parameter uncomment the line below
//Bind<CustomerLoader>().ToSelf().WithArgument("fileName", "string argument file name");
Bind<LiveFileName>().To<LiveFileName>();
}
}
public class RepositoryModule : StandardModule
{
public override void Load()
{
Bind<ICustomerRepository>().To<CustomerRepository>().Using<SingletonBehavior>();
}
}
public interface IFileNameContainer
{
string FileName { get; }
}
public class LiveFileName : IFileNameContainer
{
public string FileName
{
get { return "live file name"; }
}
}
public class CustomerLoader
{
[Inject]
public ICustomerRepository CustomerRepository { get; set; }
private string _fileName;
// To get ninject to add the constructor parameter uncomment the line below
//public CustomerLoader(string fileName)
//{
// _fileName = fileName;
//}
public CustomerLoader(IFileNameContainer fileNameContainer)
{
_fileName = fileNameContainer.FileName;
}
public void LoadCustomer()
{
Customer c = CustomerRepository.GetCustomer();
Console.WriteLine(string.Format("Name:{0}\nAge:{1}\nFile name is:{2}", c.Name, c.Age, _fileName));
}
}
public interface ICustomerRepository
{
Customer GetCustomer();
}
public class CustomerRepository : ICustomerRepository
{
public Customer GetCustomer()
{
return new Customer() { Name = "Ciaran", Age = 29 };
}
}
public class Customer
{
public string Name { get; set; }
public int Age { get; set; }
}
}