When are import properties saved? I thought they would be satisfied before the constructor, since the properties are initialized before the constructor starts, but the following example shows that ImportedClass is null in the constructor.
I know that I can solve this problem with ImportingConstuctor; it is necessary to understand when the import of properties is satisfied.
public MyClass { [Import] public ImportedClass ImportedClass {get;set;} public MyClass() {
source share