I have the following code inside my razor _CreateOrEdit view :-
@Html.EditorFor(model =>model.SystemInfo.ProcessorInfoes.FirstOrDefault().SPEED)
But i need to display the value of zero incase the model.Speed is null, baring in mind that i am sing the same code in my Create and Edit view ?
Thanks