How can I change the index of HtmlFieldPrefix?
I'm getting Children[0]
from EditorFor() and I want to make it Children[@Model.Id]
or Children[2].Children[4]
from EditorFor() and I want to make it Children[@"ParentModel".Id].Children[@Model.Id]
I won't know the actual prefix until runtime. Preferably there'd be a built-in way to change it?
Or just messing with the string? I'm still new to C# string functions.