私はまったく使用しませんDependencyAttribute
。これは推奨される方法ではありません。DependencyProperty
代わりにを使用してください。
container.RegisterType<IMyInterface, MyImplementation>(new DependencyProperty("Foo"));
注入する依存関係が必須の場合は、プロパティ注入の代わりにコンストラクター注入を使用する必要があります。Unity はコンストラクターのパラメーターを独自に計算します。
public class MyImplementation
{
private readonly IFoo foo;
public MyImplementation(IFoo foo)
{
if(foo == null) throw new ArgumentNullException("foo");
this.foo = foo;
}
public IFoo Foo { get { return this.foo; } }
}
IFoo
解決する前に登録するMyImplementation
と、Unity がその仕事を行い、それを注入します。
アップデート
public class AllProperties : InjectionMember
{
private readonly List<InjectionProperty> properties;
public AllProperties()
{
this.properties = new List<InjectionProperty>();
}
public override void AddPolicies(Type serviceType, Type implementationType, string name, IPolicyList policies)
{
if(implementationType == null)throw new ArgumentNullException("implementationType");
// get all properties that have a setter and are not indexers
var settableProperties = implementationType
.GetProperties(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic)
.Where(pi => pi.CanWrite && pi.GetSetMethod(false) != null && pi.GetIndexParameters().Length == 0);
// let the Unity infrastructure do the heavy lifting for you
foreach (PropertyInfo property in settableProperties)
{
this.properties.Add(new InjectionProperty(property.Name));
}
this.properties.ForEach(p => p.AddPolicies(serviceType, implementationType, name, policies));
}
}
そんな使い方
container.RegisterType<Foo>(new AllProperties());
パブリック セッターを持つすべてのプロパティを挿入します。