ƒabio

Results 8 comments of ƒabio

Sorry, I could be missing something, here the current situation: I'm using `UseCustomSchema = true` to return my custom `PaginatedApiResponse` in a controller's endpoint ```csharp public class PaginatedApiResponse : ApiResponse...

I will try to figure out how to implement those things, hope I can help

Sorry, I don't mean how to authorize a user, but how to setup witch commands that user could call. I would like to have two users, one `read-write`, and another...

Sorry, I don't get it, I should be able to do this from `CustomMembershipProvider` so set the rights claims for `MemberValidationResult`...(?) I'm lost

Here is my final solution, I had to use a middleware... ```csharp public class SerilogMiddleware { private readonly RequestDelegate _next; private readonly PathString[] _paths = new[] { new PathString("/health"), new...

My simple workaround: - Create simple interface `IInjectableServiceProvider` ```csharp public interface IInjectableServiceProvider { public IServiceProvider ServiceProvider { get; set; } } ``` - Implement it in your command by `public...

i haven't looked at the library code yet, but i think you can keep single responsibility and without adding aspnetcore dependency. How? Allowing us to intervene between data type detection...