-
In the case of a partial class endpoint, e.g.
```c#
public sealed partial class MyEndpoint : IEndpoint { }
public sealed partial class MyEndpoint { }
```
the `FastEndpoints.Generator` source …
-
Hello, Thank you for your excellent project!
I have several fast endpoints that accept DTOs, but there are no publicly accessible properties, therefore I utilized this way to adjust the DTO as need…
-
I found this article for allowing Swagger to use BasicAuthentication: [https://www.thecodebuzz.com/nswag-basic-authentication-openapi-documentation-asp-net-core/](url)
But when I add the **AddOpen…
-
`FastEndpoints.Validator` currently has a constraint requiring the generic parameter is a class. I don't know why this requirement exists when `FluentValidation.AbstractValidator` does not have this c…
-
When using a route parameter in the URL, the type of the property is not correctly set in swagger.
For example:
```
Get("/test/{ProjectId}");
```
with the following request:
```
public class …
-
Please consider making the ValidationFailureException public so we can unit test endpoints that use "ThrowIfAnyErrors()" method.
```cshap
public async Task Webhook_OnExistingWithSameId_ReturnsErro…
-
when running the api project with the current set of endpoints swagger complaints when generating the swagger document. an exception is thrown, seems that having multiple endpoints with the same sch…
-
Validators for an endpoint do not seem to load correctly when the endpoint and validators are stored in a referenced class library instead of the AspNet core application itself. The endpoints are all …
-
Hi there ! I faced an issue, where the properly [configured with attributes](https://fast-endpoints.com/docs/get-started#configuring-with-attributes) endpoint does not seem to have a provided authoriz…
xvsvg updated
9 months ago
-
Hi there,
I'd like to say that this is an amazing project and I'm enjoying using it a lot!
I was working with `FastEndpoints.Testing` in order to create some integration tests and wanted to use …