I've got a strongly typed razor view tied to an IEnumerable of an Object.
I'd like to add the ability to edit, in line, some, one or more, of the cells.
How do I add an editor for my quantity field in this example?
Am I incorrectly setting up my view with an IEnumerable of my object?
In
this example, the grid seems to be bound to an order object, not an IEnumerable of order,
and the developer can then simply use Html.EditorFor.
@Html.EditorFor(o => o.Quantity);