我该如何解决此问题,以使此代码不会出错
[HttpGet("{categoryId}")]
public string GetCategoryNameByTheCategoryId(int categoryId)
{
return _dataRepository.GetCategoryNameByTheCategoryId(categoryId);
}
[HttpGet("{categoryName}")]
public int GetCategoryIdByTheCategoryName(string categoryName)
{
return _dataRepository.GetCategoryIdByTheCategoryName(categoryName);
}