Unity 容器注入构造函数 - 无法将 lambda 表达式转换为类型“object[]”因为它不是委托类型
有谁知道如何解决 Unity Container InjectionConstructor 没有 Func
this.unityContainer
.RegisterType<IService1Client, Service1Client>()
.Configure<InjectedMembers>()
.ConfigureInjectionFor<Service1Client>(
new InjectionConstructor(() =>
this.unityContainer.Resolve<User>()
.SelectedDepartment
.ApplicationServerUrl
.ToString()));
干杯,
Does anyone knows how to workaround the fact Unity Container InjectionConstructor does not have any overload for Func<string>?
this.unityContainer
.RegisterType<IService1Client, Service1Client>()
.Configure<InjectedMembers>()
.ConfigureInjectionFor<Service1Client>(
new InjectionConstructor(() =>
this.unityContainer.Resolve<User>()
.SelectedDepartment
.ApplicationServerUrl
.ToString()));
Cheers,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 InjectionFactory。
You could use the InjectionFactory.
我想我自己找到了答案:
Think I found out the answer myself: