-
-
Notifications
You must be signed in to change notification settings - Fork 239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: Is it possible to specify the registration order? #183
Comments
@blahDL, +1 @khellang, it would be very useful to describe exactly what the registration order is when calling a Scan. I couldn't find any information about this anywhere. How does multiple implementation of interface is registered? E.g. Class1, Class2 and Class3 implements Interface1. How this can be registered with Scrutor? How can I control the registration order? |
I'd love to hear what you'd expect the API to look like and how it would work? Would it order all implementations per service type or globally? Would it work with an |
Do we have this feature in Scrutor? or still we are waiting for it. |
The issue is still open 😁 |
I am using Scrutor to register pipeline behaviours for MediatR which is working perfectly with the following code
I have now introduced a pipeline behaviour that I want to be run before the others. Pipeline execution order is set by the order they are registered with the container so now I need to either specify the registration order somehow or register them all manually.
Is there a way that I can specify the registration order (by using something like an attribute on the classes) or do I have to stop using Scrutor for this and register them all manually?
The text was updated successfully, but these errors were encountered: