在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(除非出现依赖注入,在我的例子中,我不会通过
剖面配置
,现在任何地方。