When sending a request model to Net Core API from Angular app, it changes the floating point variable's value.
Here is the request body sent from Angular app.
And when it hits the net core api it changes to this.
The problem can be fixed by rounding in this case but I wonder if it will have harming affects with other values.
It seems like
Quantity
hasdouble
type. Change it todecimal
in order to precisely represent decimal values.