-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Before:
namespace AspBox
{
using Microsoft.AspNetCore.Mvc;
[Route("api/values")]
[ApiController]
public class ValuesController : ControllerBase
{
[HttpGet("{id}")]
public IActionResult Get(int id)
{
...
}
}
}After:
namespace AspBox
{
using Microsoft.AspNetCore.Mvc;
[Route("api/values")]
[ApiController]
public class ValuesController : ControllerBase
{
[HttpGet("{id:int}")]
public IActionResult Get(int id)
{
...
}
}
}lloydjatkinson