codelovercc
codelovercc
@Pliner I'm not really sure it's a common practice or not, though `ConnectionConfiguration.Hosts` is a ` IList`, so I aimed to support a client certificate per node. This allows for...
Hi, try config ` SwaggerGenOptions` this `options.CustomSchemaIds(t=>KeyNameGeneratedByType(t));` when calling `services.AddSwaggerGen`. This may solve your issue.
> $ref values must be RFC3986-compliant percent-encoded URIs It says the `Id` is invalid, so let's custom the value of schemaIds to be a valid one.
> @codelovercc have you configured to read .xml file? :)  Hi Naxaliav, It's configured. ```csharp options.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, $"{typeof(SwaggerExtensions).Assembly.GetName().Name}.xml")); var entryAssembly = Assembly.GetEntryAssembly(); if (entryAssembly != null) { options.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, $"{entryAssembly.GetName().Name}.xml")); }...
> Your find method has 2 http attributes: post and get. There should be only one. However I think its just a typo in example :). Why can't you rename...
@Havunen Thank you for your work. There still is a problem with overloaded method in this case: ```C# public abstract class BaseModelController : Controller { /// /// Delete by Id...
> Thanks, I will check Hi, thanks for you work. The overload methods doc generation may be work well in your fork repo, I recently checked this, `TKey[]` is an...
@jgarciadelanoceda Sure, I will test it as soon as possible. Thank you for your work :)
Thank you, this worked!
Using the demo I provided, when adjusting the window size, be sure to immediately adjust the window width to greater than 1000 before the account settings page (full-screen account settings...