So in my model I have:
public int Number {get; set;}
in my View I call:
@Html.TextBoxFor(m => m.Number, new { id = "Number" })
When I run application there is 0 value in TextBox.
I tried to change model like this:
public int? Number {get; set;}
but then i get exception...However I have in my model
public decimal? Price {get; set;}
and in my view:
@Html.TextBoxFor(m => m.Price, new { id = "Price" })
and when i run this textbox is empty and everything is ok. Does someone explain why int can't be a nullable type in this case? The exception I get is Method not found: 'Int32'
The goal is not to have 0 value in textbox but normal empty textbox