The built-in EditorFor does only work with member access expressions.
But in one scenario, I need to multiply the value with 100 and have that inside a text box.
That is because the value represents a percentage and the user should be able to input 27 which is internally stored as 0.27.
For this it would be nice to have something like EditorFor(m => m.MyValue * 100)
.
Is there any equivalent for that?
You can try adding an attribute to your property
Now a value of 0.27 will appear as 27 % on your page. Hope that helps