MinimalApis.Extensions icon indicating copy to clipboard operation
MinimalApis.Extensions copied to clipboard

A set of extensions and helpers for working with ASP.NET Core Minimal APIs.

Results 21 MinimalApis.Extensions issues
Sort by recently updated
recently updated
newest added

```C# //Should fail when id does not equal "hello" or "world". Expect 400 response builder.MapGet("/test/{id}", async ([FromRoute, RegularExpression("^(hello|world)$")] string id) => { //Currently returns "hello world" regardless of validation return...