Maksim Volkau
Maksim Volkau
@detoxhby Here it is `dotnet add package DryIoc.Microsoft.DependencyInjection --version 8.0.0-preview-01`
Could you provide the example with the casting? What are using Request.Container for?
@detoxhby Got it, will check. Btw, I am still interested why do it with such a "low level" DryIoc stuff, are you integrating with some lib?
Hi @Amleto Yes, in regard to `childContainer.RegisterDescriptor(service, IfAlreadyRegistered.AppendNewImplementation, "child-stamp");` The `IfAlreadyRegistered.AppendNewImplementation` is incompatible with the service key. And yes, it is not great that the fact is not reflected by...
@Amleto A duplicate #573 ?
Ok, experimenting with the `EmitHacksTest` I have found that we need support for [UnsafeAccessorTypeAttribute](https://github.com/dotnet/runtime/issues/90081) likely in .NET 9 to access the **non-public** classes such as `DynamicILGenerator` and `RuntimeILGenerator`.
Thanks for PR. I will check later.
There are too many uncertainties with those changes. Regarding `null` instead of `default(Foo.Bar)`, maybe there should be enum configuration for such kind of thing. Because the preference may depend on...
@dzmitry-lahoda We won't be able to support hoisted expression without messing with C# compiler/roslyn, but can leverage FEC custom `ExpressionInfo` to build such expression manually. Imagine something like this: ```...
ASP .NET Core ObjectMethodExecutor in shared ASP sources used referenced in #72. It creates custom awaitable struct for making async calls.