我的服务基类具有通用公共属性
public IProvider<TRequest, TResponse> Provider;
我正在尝试注入
container.Register<IProvider<GetAccount, GetAccountResponse>>(c => new AccountProvider());
但这不起作用(属性为空),而其他非泛型属性被初始化。
它应该(我能做到)工作吗?
我的服务基类具有通用公共属性
public IProvider<TRequest, TResponse> Provider;
我正在尝试注入
container.Register<IProvider<GetAccount, GetAccountResponse>>(c => new AccountProvider());
但这不起作用(属性为空),而其他非泛型属性被初始化。
它应该(我能做到)工作吗?