Register
私は方法とResolve
新しいインスタンスしか知りません。ただし、解決したいインスタンスに既存のオブジェクトをパラメーターとして渡す方法がわかりません。
Q1:
interface IPerson {
person FindAnOtherPerson();
void MakeFriends();
}
class Person : IPerson {
private List<Person> _people;
//...
void MakeFriends() {
var peter = FindAnOtherPerson(); //from _people
var rel = new Relationship(this, peter); //build a relationship
//how to pass params? something like Resolve<IRelationship>(this, peter)?
}
//...
}
Q2:
interface IParent { }
interface IChild { }
class Parent : IParent {
private IChild _child;
public Parent() {
_child = new Child(this); //parent knows child
//With DI, how do I resolve child and pass 'this' to child?
}
}
class Child : IChild {
private IParent _parent;
public Child(IParent p) { //child knows parent
_parent = p;
}
}
私はしばらくこれについて考えましたが、それを解決するのに十分な脳液ではありませんでした。おかげで助けてください:)