我得到AmbiguousMatchException:该请求匹配了多个端点。符合条件:错误

时间:2020-02-26 13:26:34

标签: asp.net-core asp.net-core-webapi

我该如何解决此问题,以使此代码不会出错

[HttpGet("{categoryId}")]
public string GetCategoryNameByTheCategoryId(int categoryId)
{
    return _dataRepository.GetCategoryNameByTheCategoryId(categoryId);
}

[HttpGet("{categoryName}")]
public int GetCategoryIdByTheCategoryName(string categoryName)
{
    return _dataRepository.GetCategoryIdByTheCategoryName(categoryName);
}

0 个答案:

没有答案