我有一个从依赖注入框架(Autofac)获取其依赖关系的构造函数。问题是除了获取这些依赖项之外,我无法在构造函数中执行任何其他操作,如果我在构造函数中编写除了那些依赖项分配之外的任何语句,我会收到以下错误:-
No parameter less constructor is defined for this object
我必须评论下面显示的只读字符串的分配才能使它起作用:-
public RelationshipController(ICustomerService customerService,)
{
this.customerService = customerService;
//someReadonlyString = "abcd";
}
谁能告诉我,发生了什么?