hadashiA
hadashiA
It seems that there are the following use case. > Hi! I am trying to use Addressables + RegisterFactory + VContainer but I didn’t succeed. > Can you please give...
It may be useful to be able to replace the registered items later 🤔 Perhaps we can meet the #157 requirements. ```csharp builder.TryGet(out var registrationBuilder); builder.Replace(registrationBuilder, new NewFooRegistrationBuilder(..)) ```
For example, I would like to be able to quickly register a generic like this. https://github.com/Cysharp/MessagePipe/blob/master/src/MessagePipe/ServiceCollectionExtensions.cs#L43-L102
[gustavopsantos/reflex](https://github.com/gustavopsantos/reflex) seems to have an amazing performance. - Using Expression Tree. - https://github.com/gustavopsantos/reflex/blob/main/Reflex/Assets/Reflex/Scripts/TypeInfoCache.cs#L81-L105 - I thought this wouldn't work in Unity.. I want to test it. - However, VContaienr has...
#301 If the open generic type is registered, the closed generic type will be dynamically assembled at resolve time. ```csharp builder.Register(typeof(IFoo), typeof(Foo)) ``` 📝 Usage: https://github.com/Cysharp/MessagePipe/blob/master/src/MessagePipe/ServiceCollectionExtensions.cs#L43-L102
IL generation has the following downsides: - Build problems are difficult to investigate, fix and maintain. - The IL code itself is understandable. - However, it is difficult to understand...
Rails now supported automatic inverse. http://wangjohn.github.io/activerecord/rails/associations/2013/08/14/automatic-inverse-of.html Nevertheless, sengiri can not use this feature because automatic inverse uses class name to detect association.