Giter Club home page Giter Club logo

Comments (2)

ChrisMissal avatar ChrisMissal commented on July 16, 2024

I encountered something similar with this. The decoration was happening in two places for me. The first being what you have above, the second being within an instance of IDependencyResolver. Inside BeginScope() the app creates a child/nested container, which only lives for the request, but also registers the decoration.

Sorry I can't be too specific right now, but hopefully that will point you in the right direction.

from mediatr.

ThisNoName avatar ThisNoName commented on July 16, 2024

Thanks. Changed the default BeginScope to the following and it works, not sure if it's the right way though, and seems like you don't have to do it in DefaultRegistry.

    public IDependencyScope BeginScope()
    {
        //IContainer child = this.Container.GetNestedContainer();
        //return new StructureMapWebApiDependencyResolver(child);
        var resolver = new StructureMapWebApiDependencyResolver(CurrentNestedContainer);

        ServiceLocatorProvider provider = () => resolver;

        CurrentNestedContainer.Configure(cfg =>
        {
            cfg.For<ServiceLocatorProvider>().Use(provider);
            cfg.For(typeof(IRequestHandler<,>)).DecorateAllWith(typeof(ValidatorHandler<,>));
        });
        return resolver;
    }

Now look back, turned out SimpleInjector can do it simpler without the extra step. Yesterday I was actually stuck on a different issue, trying to build decorator with a different signature. It was the IValidator[] blow up.

public class ValidationRequestHandler<TRequest, TResponse> : IRequestHandler<TRequest, TResponse> 
    where TRequest : IRequest<TResponse>
{
    private readonly IRequestHandler<TRequest, TResponse> _innerHander;
    private readonly IValidator<TRequest>[] _validators;

    public ValidationRequestHandler(IRequestHandler<TRequest, TResponse> innerHandler,
          IValidator<TRequest>[] validators)
    {
        _validators = validators;
        _innerHander = innerHandler;
    }

from mediatr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.