Leon V
Leon V
.NET 8, NSwag 14.0.7. Tried to follow https://github.com/RicoSuter/NSwag/wiki/AspNetCore-Middleware#add-oauth2-authentication-openapi-3 but couldn't make Swagger UI to pass the authorization header. It started to work after switching to `OperationSecurityScopeProcessor` instead `AspNetCoreOperationSecurityScopeProcessor`. Not sure...
It looks like `IsMultiTenant()` is hard-coded to use `string` for TenantId column. I'm curious as to why not use TKey instead? In most cases I'd rather use `Guid` for storing...
Given the following: ```csharp [assembly: ApiController] [assembly: ApiConventionType(typeof(ApiConventions))] [Route("/xxx")] public class xxxController : ControllerBase { [HttpGet(Name = nameof(Getxxx))] public ActionResult Getxxx(){} [HttpPut("{itemId:guid}", Name = nameof(Updatexxx))] public ActionResult Updatexxx(Guid itemId){} }...
# 🐛 Bug Report After setting Loading in FluentButton bound to FluentInputFile, it won't open the file browse dialog anymore. ## 💻 Repro or Code Sample ``` Upload... @code {...