Listing API Methods Under Multiple Groups
问题 I have Swashbuckle annotated code that looks like this: [Route("api/Subscribers/{id}/[controller]")] [Route("api/Organizations/{id}/[controller]")] public class AddressesController : Controller { [HttpGet("{aid}")] [SwaggerResponse(HttpStatusCode.OK, Type = typeof(PostalRecord))] public async Task<IActionResult> GetAddress(Guid id, Guid aid) { //do something } I would like to use the GroupActionsBy customization, as shown in this example, but I want to have the above GetAddress method