Telling StructureMap to use another Constructor

后端 未结 3 1233
忘了有多久
忘了有多久 2021-01-04 21:12

I have a class with 2 constructors.

MyClass()

and

MyClass(IMyService service)

How do I tell StructureMap then whenever I do a \'new MyClass()

相关标签:
3条回答
  • 2021-01-04 21:38

    If you call new MyClass(), then StructureMap is not involved at all. No amount of StructureMap configuration will change the behavior.

    If you call ObjectFactory.GetInstance<MyClass>(), StructureMap will by default call the constructor with more parameters.

    If you want StructureMap to use a different constructor, you can specify the constructor (via PHeiberg's answer):

    x.SelectConstructor<IMyClass>(() => new MyClass(null));
    

    Or you can just tell StructureMap explicitly how to create the instance using the overload of Use() that accepts a Func<>:

    x.For<IMyClass>().Use(ctx => new MyClass(ctx.GetInstance<IMyService>()))
    
    0 讨论(0)
  • 2021-01-04 21:40

    When using a DI container like structuremap it's best to have just a single constructor on every class. This constructor has to resolve all the dependencies of the class, if IMyService is a dependency (which looks a bit strange though) this should always be resolved when instantiating so the parameterless constructor is not needed.

    0 讨论(0)
  • 2021-01-04 21:42

    Joshua's answer is covering all aspects. As a side note in order to configure Structuremap to choose a specific constructor without hardcoding the arguments to the constructor as done in Joshua's example you can use the SelectContructor method:

    x.SelectConstructor<MyService>(() => new MyService());
    

    The lambda in the SelectConstructor method call should invoke the needed constructor (put nulls or any value of the correct type for all parameters present). See the documentation for further info.

    0 讨论(0)
提交回复
热议问题