Closed dkamau closed 6 months ago
@dkamau Are you using FastEndpoints?
@KyleMcMaster Yes I am.
We've discussed adding FastEndpoints support in issue #157
i using fast endpoit around six months on my work , i think it's a great idea add FE support to Results. I wanna participate
There is work being done to provide support for FastEndpoints similar to the functionality for ASP.NET Core support. Consider 👍 'ing the issue in #175 if you'd like to see this implemented.
See this comment from #175:
FastEndpoint already has a SendResultAsync() to send any IResult instance produced by the Results static class in Minimal APIs. So simply you can call something like this: await SendResultAsync(result.ToMinimalApiResult()); More info: https://fast-endpoints.com/docs/misc-conveniences#send-methods
I'm assuming that either this fixes the immediate issue or, if not, that #175 will do so, so I'm going to close this now. Re-open if you still need to.
For example, if I sent back a conflict from my handler;
return Result.Conflict($"Contributor with name {request.NewName} already exists!");
How will I report that to the user at the API level?
I tried this but it does not report as expected