ASP.NET Core Routing works in VS IIS Express but not in IIS 10
问题 I am developing ASP.NET Core web API. here I have a situation like I have to use multiple get functions which get data from SQL server DB. So for that, I'm doing custom attribute routes. below are my codes [Route("api/[controller]")] public class MeController : Controller { private readonly ITechRepository _tech; private readonly IPageOptions _page; public MeController(ITechRepository tech,IPageOptions page) { _tech = tech; _page = page; } [Route("getTech")] public IEnumerable<TechStack> Get(