0

我需要将 StructureMap 代码转换为 Ninject(以支持我的托管服务提供商,因为它们仅支持在中等信任下运行的应用程序)。我在 StructureMap 中的基本寄存器是:

ObjectFactory.Initialize(x =>
{
    x.For<IDbConnection>()
     .HttpContextScoped()
     .Use(() =>
     {
        var constr = ConfigurationManager
            .ConnectionStrings["conn"].ConnectionString;                
        var conn = new SqlConnection(constr);        
        conn.Open();        
        return conn;
     });

    x.FillAllPropertiesOfType<IDbConnection>();
    x.For<ICurrent>().Use<Current>();
    x.For<ILogger>().Use<Logger>();
    x.For<IMembershipService>().Use<SpaceMembership>();
    x.For<IFormsAuthenticationService>()
        .Use<FormsAuthenticationService>();
    x.Scan(sc =>
    {
        sc.Assembly("Space360.DB");
        sc.AddAllTypesOf(typeof(IRepository<>));
        sc.WithDefaultConventions();
    });
});
4

1 回答 1

0

它看起来类似于:

// IDbConnection binding
Bind<IDbConnection>().ToMethod(x => {
                          var constr = ConfigurationManager.ConnectionStrings["conn"].ConnectionString;
                          var conn = new SqlConnection(constr);
                          conn.Open();
                          return conn;})
                     .InRequestScope();

// ommited fill all properties of type

Bind<ICurrent>().To<Current>(); // .InRequestScope() - just suggestion
Bind<ILogger>().To<Logger>();
Bind<IMembershipService>().To<SpaceMembership>();
Bind<IFormsAuthenticationService>().To<FormsAuthenticationService>();

// for this: Ninject.Extensions.Conventions has to be referenced
Bind(x=> x.From("Space360.DB")
          .SelectAllClasses().InheritedFrom<IRepository>()
          .BindDefaultInterface()
       // .Configure(b => b.InRequestScope())
     );

恐怕目前还没有类似于FillAllPropertiesOfTypeNinject 的内置方法。您必须使用属性标记所有依赖[Inject]属性(但它会将您的类绑定到Ninject.Core),或者您可以尝试本文中描述的方法:

Ninject 3.0 没有 [Inject] 属性的属性注入

基本上,它创建了 Ninject 组件,实现了IInjectionHeuristic,它连接到 ninject 内核,因此它知道如何解释启发式。在方法中注入的规则ShouldInject是:

  1. 该属性是 Ninject 生成的类的公共可写属性
  2. 它位于我们个人关心的组件中
  3. IT可以解决

对于我示例的最后一行,您将需要使用ninject.extensions.conventions

注意,还有ninject.extensions.logging用于隐式注入记录器(目前支持 Log4Net 和 NLog)。

于 2013-01-29T11:28:58.400 回答