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?

hardywang
  • 4,864
  • 11
  • 65
  • 101

2 Answers2

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.

Wiktor Zychla
  • 47,367
  • 6
  • 74
  • 106
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>
Tim Sylvester
  • 22,897
  • 2
  • 80
  • 94