3

I have a class as a dependency:

public class Foo {
    public Foo() {
        // default constructor
    }

    public Foo(IMyInterface my) {
    }
}

When I tried to inject it into another class I got error message as

Resolution of the dependency failed ...... InvalidOperationException - The current type, IMyInterface, is an interface and cannot be constructed. Are you missing a type mapping?

I never registered IMyInterface with any concrete type, because I reserve this constructor for other purpose.

With my understanding Unity will try to resolve constructor with least parameters first if not clearily instructing it which one to resolve. So it will try to initialize the default constroctor.

Other than I use InjectionConstructorAttribute, is there a smart way I can tell Unity to ignore the 2nd constructor?

2 Answers 2

4

It's the opposite - Unity will try to resolve a constructor with MOST parameters first. You can use InjectionConstructor attribute over one of your constructors to tell unity to prefer this constructor over others.

Sign up to request clarification or add additional context in comments.

Comments

2

You can indicate in the configuration that the zero-parameter constructor should be used:

<register type="IFoo" mapTo="Foo">
    <lifetime type="external"/>
    <constructor />
</register>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.