I have the following type being registered in Unity:
container.RegisterType, AzureTable>();
The
You could give this a try:
// Register your type:
container.RegisterType), typeof(AzureTable)>()
// Then you can configure the constructor injection (also works for properties):
container.Configure()
.ConfigureInjectionFor>(
new InjectionConstructor(myConstructorParam1, "my constructor parameter 2") // etc.
);
More info from MSDN here.