-
Notifications
You must be signed in to change notification settings - Fork 22
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
Simplified parametric Func-based injection #91
Comments
@Serg046 When some dependency is added that has not been defined, it can break a lot of things and it will be difficult to understand which Func<, , ,> should be injected. Also the sequence of passing parameters to Func is not clear. And what if you have several parameters of the same type, but which have different purposes? |
|
True, I am really worry that I don't see something right now. But from the other hand, I don't want to spend time doing something that couldn't even make sense
The current proposal is quite simple and probably naive. You just exclude registered types and put remaining ones as Func type arguments. class Foo(string first, string second, IBaz baz, string third, int number, IBar bar) : IFoo {} So here you inject DI.Setup
.Bind<IBaz>().To<Baz>()
.Bind<IBar>().To<Bar>()
.Bind<IFoo>().ToFactory<Foo>() And below is a complete analog, you can think like DI.Setup
.Bind<IBaz>().To<Baz>()
.Bind<IBar>().To<Bar>()
.Bind<string>().To<string>("first")
.Bind<string>().To<string>("second")
.Bind<string>().To<string>("third")
.Bind<int>().To<int>("number")
.Bind<string, string, string, int, IFoo>().To<string, string, string, int, IFoo>(
ctx => (first, second, third, number) => {
ctx.Inject<Foo>(out var foo);
return foo;
})
I'd keep the same order as in the implementation type constructor skipping registered stuff.
It seems like that's not a Pure.DI responsibility, the developer decides what to pass where.
|
Btw, let me also share another disadvantage I faced recently with the current existing approach:
This cannot work because MethodReference is inherited from MethodDefinition that's why you are forced to use tags or other names. If we had a better isolation, that wouldn't be the case. |
I'm working on task #88 right now. And within this task, there is such an opportunity. So far there are a lot of problems and I'm in the process. |
That's quite a good compromise. Significantly less verbose and well isolated. Eager to see it released. Feel free to close the current proposal and ping me once/if you want to resume it. |
I'm not sure I'll be able to realize it yet. Since this approach creates a number of uncertainties. So we don't need to close this ticket yet. |
Consider you have a service that should receive some dependency at runtime:
The only current way to achieve it is to do something like this which is rather verbose. Another disadvantage is that you will have to register your argument for the whole composition root with either the name or tag so that it could be linked into another service unexpectedly.
The proposal is to make it less verbose. Ideally you want to map IFoo to Foo without any additional steps required like it is usually done in classic dynamic containers without checks.
The hint will tell the gen to do the following:
The text was updated successfully, but these errors were encountered: