My Model (Generated from db sql server):
public partial class Wagons
{
public int ID {get; set;}
public decimal Poids {get; set;}
}
And with Entity Framework I generated my Controller and View.
When I tried to enter the data I got something like this:
and my propriety is Decimal, I replaced "," by "." I got an other error : The value is not valid for...
How can I fix this please?
Regards