asp.net core 2.0 bind model with decimal value
问题 I've been looking for a solution to this case for hours, and I did not find anything that worked out for me. Here we use the comma for decimal separator, and when I send a value like "15,50", in my controller I get the value of the model as "1550", and it only makes sense if I send "15.50". I covered the following topics, and nothing worked. Set CultureInfo in Asp.net Core to have a . as CurrencyDecimalSeparator instead of , Aspnet Core Decimal binding not working on non English Culture I am