Results 11 comments of MCDis

Any progress?

Hi! vue 3 already released

Hi @publee ! ```c# var container = new DependencyInjectionContainer(_ => { _.Behaviors.ConstructorSelection = ConstructorSelectionMethod.Dynamic; }); ```

Thanks for the tip. I will try and after that I will write the solution here and after that I will close the issue

Hi @mattheworiordan! We have got micro services arch and one type of service is targeting to collecting data in json and sending them to configured channel to configured queue system....

We are using new static abstract methods and generics constraints in interface to do workaround and continue using generics methods with serialization. Add new interface: ```csharp interface IUserPayload { public...

to summarize, you can serialize your request according to your own rules and regulations, and serialize user data using the attached context, as I showed, or you can try to...

The system serializer also allows you to set chains of type resolvers and on the edge, we could simply include generic types for request/response in our user context or TypeInfoResolverChain...

I can also suggest limiting ourselves to partial native aot support, for example only for adding data to the index

Hi @mattheworiordan, our system builds on reactive principles and at any time any part of configuration can changed suddenly. So we need the way to terminate all active 'processes' as...