Vladyslav Stovmanenko

Results 12 comments of Vladyslav Stovmanenko

If you need a dynamic properties on your entity I would recommend using JsonDocument in your entity for dynamic properties. So it would look like this ```c# public class SomeEntity...

There should be class registered for route (AddRouteComponent method with System.Action parameter to register services for route) like ```c# serviceCollection.AddTransient(sp => new CustomFilterBinder(sp)); serviceCollection.AddSingleton(); ``` Also I had to specify...