Maksim Volkau

Results 241 comments of Maksim Volkau

@alansingfield Thanks for reporting, I will check whats happenning.

> For any service with a closed generic as a dependency, we get this error: @alansingfield Sorry, forgot about this issue, but this statement is interesting. Will check it sooner.

I am updating the docs... Your condition is working just fine.

@sramananthula Hi, So, are the options not injected with the current DryIoc adapter?

I have tested it in the example project for #520 (https://github.com/dadhi/DryIoc/blob/9ea3bd9a2a58034792a0df30ecfe86af2ffdd574/samples/GHIssue520/Program.cs#L11), and DryIoc has injected the options just fine https://github.com/dadhi/DryIoc/blob/9ea3bd9a2a58034792a0df30ecfe86af2ffdd574/samples/GHIssue520/Program.cs#L169

I see that you are using MEF extension? And here is the thing that you do not control (you cannot put the Export on top of it) and should `Register`...

@sramananthula You are registering the interface instead of the implementation, that's why you are getting the error. Looking at the MS docs https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/options?view=aspnetcore-6.0#use-di-services-to-configure-options you may just call `AddOptions` to add...

@sramananthula What is the error?

@sramananthula Ok, You are using the `Made.Of` wrong. Read the [docs](https://github.com/dadhi/DryIoc/blob/master/docs/DryIoc.Docs/SelectConstructorOrFactoryMethod.md#factory-method-instead-of-constructor). Regarding the **initial problem** with options... I don't know what is wrong with your case, but I have the...