代码之家  ›  专栏  ›  技术社区  ›  Abhijeet

参数化构造函数困境,源自基类?

  •  0
  • Abhijeet  · 技术社区  · 6 年前

    在web api中设置参数化构造函数 AssignmentController(ProfileConfigCAWP pc) 正在接到电话。我需要停止这一切。

    我不想调用参数化的.ctor one。两个Web API都没有 pipleline可以,因为IMHO web API管道将实例化 无参数ctor(除非出现依赖注入, 在我的情况下我不会通过 ProfileConfigCAWP ,任何地方 现在。

    public class BaseApiController : ApiController
    {
        //1st call
        public BaseApiController()
        {
    
        }
    }
    
    //Web Api Controller
    public class AssignmentController : BaseApiController
    {
    
        public AssignmentController()
        {
    
        }
    
        //2nd call
        public AssignmentController(ProfileConfigCAWP pc)
        {
            //Why does this gets invoked, I'm worried Unity Container depency injection, is playing around
            if (pc != null && pc.LoggedinAccountId != Guid.Empty)
            {
                CAWPConfigure(pc);
            }
        }
    }
    

    即使我试过 tweaking with base keyword 所以基类将明确知道要调用哪个构造函数。

    public class BaseApiController : ApiController
    {
        //1st call
        public BaseApiController()
        {
    
        }
    }
    
    //Web Api Controller
    public class AssignmentController : BaseApiController
    {
    
        public AssignmentController() : base()
        {
    
        }
    
        //2nd call
        public AssignmentController(ProfileConfigCAWP pc) : this()
        {
            //Why does this gets invoked, I'm worried Unity Container depency injection, is playing around
            if (pc != null && pc.LoggedinAccountId != Guid.Empty)
            {
                CAWPConfigure(pc);
            }
        }
    }
    

    编辑: 我不想调用参数化的.ctor one。两个Web API pipleline都不行,因为IMHO Web API pipeline将实例化无参数的.ctor(除非出现依赖注入,在我的例子中,我不会通过 剖面配置 ,现在任何地方。

    1 回复  |  直到 6 年前
        1
  •  2
  •   Lennart Stoop    6 年前

    默认情况下, Unity 选择具有最大数量参数的构造函数。

    要重写此行为,可以用 InjectionConstructorAttribute .

    public class AssignmentController : BaseApiController
    {
        [InjectionConstructor]
        public AssignmentController() : base()
        {
        }
    }
    

    另一个不那么麻烦的选择是更改注册。

    container.RegisterType<AssignmentController>(new InjectionConstructor());