我正在尝试使用传入的类型实例化一个新类,然后使用 Unity 容器构建对象以注入其依赖项。
Unity Container 没有任何扩展/策略。我只是使用一个不变的统一容器。它正确加载配置并在代码中的其他位置使用以解决对项目的依赖关系。
我有以下代码:
// Create a new instance of the summary.
var newSummary = Activator.CreateInstance(message.SummaryType) as ISummary;
this.UnityContainer.BuildUp(newSummary.GetType(), newSummary);
// Code goes on to use the variable as an ISummary...
类的 [Dependency] 属性(公共和标准 get;set;)没有被注入。调用 BuildUp 方法后,它们仍然为空。有什么明显的我做错了吗?
提前致谢。