Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找在我的 Compact Framework 应用程序中使用的 IoC 容器。尝试 Funq 我发现我找不到用它进行属性注入的方法。
我浏览了项目网站上的讨论和单元测试,但我找不到任何属性注入的例子。
Funq 是否支持属性注入?
那么一般情况下不会是这样的吗?
myContainer.Register<IUserRepository>(() => { var myRepository = new SomeUserRepository(); myRepository.SomeProperty = someValue; return myRepository; });