I'm trying to apply autofac decorator support feature to my scenario with no success. It looks like in my case it doesn't assign the name to the registrations properly.

Is there a way to register scanned assembly types with a name, so that I can later use it in the open generic decorator key?

Or maybe I'm completely wrong and doing something inappropriate here?

builder.RegisterAssemblyTypes(typeof(IAggregateRepositoryAssembly).Assembly)
    .AsClosedTypesOf(typeof(IAggregateViewRepository<>)) //here I need name, probably
    .Named("view-implementor", typeof(IAggregateViewRepository<>))
    .SingleInstance();

builder.RegisterGenericDecorator(typeof(CachedAggregateViewRepository<>),
    typeof(IAggregateViewRepository<>), fromKey: "view-implementor");
link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Here's an attempt, not in front of Visual Studio so overload resolution might not be exactly right:

builder.RegisterAssemblyTypes(typeof(IAggregateRepositoryAssembly).Assembly)
    .As(t => t.GetInterfaces()
              .Where(i => i.IsClosedTypeOf(typeof(IAggregateViewRepository<>))
              .Select(i => new KeyedService("view-implementor", i))
              .Cast<Service>())
    .SingleInstance();
  • Named() is just syntactic sugar for Keyed(), which associates the component with a KeyedService
  • As() accepts a Func<Type, IEnumerable<Service>>

You will also need:

using Autofac;
using Autofac.Core;
link|improve this answer
Works like a charm! Thanks a lot! – achekh Nov 16 '11 at 13:10
Great! Glad to hear it. – Nicholas Blumhardt Nov 16 '11 at 15:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.