在下面的API控制器中,如何返回405方法如果在API上调用POST或PUT,则不允许。当前返回404 not found。
[HttpGet]
public ActionResult<IEnumerable<Customer>> Get()
{
string query = "select* from Customers;";
try
{
List<Customer> collection = GetCustomers(query);
return Ok(collection);
}
catch (System.Exception)
{
return BadRequest();
}
}