我需要根据 PropertyInfo.Name 解决属性注入。这个类看起来像这样
public class Test
{
[Dependency]
public Test TestProperty1{ get; set; }
}
我希望能够以某种方式在幕后解决 TestProperty1 ,而无需显式重新键入属性名称。
container.Resolve<Test>("TestProperty1")
在呼叫container.Resolve<Test>()
或container.BuildUp( new Test())
**期间
我怎样才能做到这一点?