in model:
public float Team { get; set; }
But i got incorrect value:
What is problem with rounded ? How fix it in webapi?
I have many method , fields , levels i dont want resolve by hand every fields by Math.Round or other functions ....
update 1. for @MdFaridUddinKiron
public IActionResult Save([FromBody] Model req){
return Ok();
}
public class Model {
public float Team { get; set; }
}