I need to pass a decimal value in my URL.
As the example below:
URL: http://localhost/4,5/test
Problem is that my value is passing as 0
[Route("api/TableItemsMain/{quantity:decimal}/{name}
public void Post()
{
}
Is there any method I can pass decimal values? Or it is better to convert my comma to dot before in my URL?