dependabot[bot] on npm_and_yarn
Bump elliptic from 6.5.3 to 6.5… (compare)
RicoSuter on NSwag-Build-1129
!
behind the call to ConvertToString, or we do it that way and make the compiler know that p_ is not null there, and there's no reason that ConvertToString returns a null
System.Convert.ToString(value, cultureInfo);
This returns null if value is null
return "";
instead of null if the parameter is null
""
instead
app.UseSwaggerUi3(p => p.Path = "/")
@RicoSuter - I'm reading the OpenAPI 3 spec, and -- If I'm understanding it correctly -- it does seem to support "objects" as query parameters https://swagger.io/docs/specification/describing-parameters/#query-parameters:
"Query parameters can be primitive values, arrays and objects"
Related to that is how query parameters can be serialized: https://swagger.io/docs/specification/serialization/